I am developing a project using NetBeans IDE. I am new to javafx. I created a class "AddStudent" in a package named "addstudent". When I ran the class, I got "Error: Could not find or load main class addstudent.AddStudent". Why this error is showing ? How can it solved ?
相关问题
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
- Difference between Types.INTEGER and Types.NULL in
In my case, the problem was the project path had some special (russian) chars, like
Once moved to another folder, it worked:
Also:
äöü!@#$%^&_+-``~_',
№;
I was getting the same error while running my javaFx program.
And now I got the answer about how to fix it.
When you do this, you'll see a class with the same name as the name of the project.
When you try to run that file you'll get this error:
to fix this error, simply rightclick on your project and click run.
Your project runs and you'll see something like, "say hello world". After that it will work fine.
One more thing, when you try to run your project with webstart on netBeans it will not work!
And it is possible to get an error like
to fix this open your task manager and go to Background Process look for Java() Binary file 32 bit, just end that task and you're back.
I'm running your code and it works fine. What I did
Created New -> JavaFx Main Class -> AdStudent -> Copy/Pasted your code
Right click on Project -> Properties -> Run -> Browse Application Class -> Select class
addstudent.AddStudent
Clean and Build
I have a feeling the first 2 are fine for you. You may just need to Clean and Build.