Why “Error: Could not find or load main class addstudent.AddStudent” is showing

前端 未结 3 1410
醉话见心
醉话见心 2021-01-24 11:29

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

3条回答
  •  天命终不由人
    2021-01-24 11:57

    I was getting the same error while running my javaFx program.

    And now I got the answer about how to fix it.

    • Create your javaFx project on netBeans
    • New Project-> JavaFx
    • Application-> Finish

    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:

    Error: Could not load or Find main class classname
    

    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

    Error : javaFxApplication.jar could not Be deleted.
    

    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.

提交回复
热议问题