我一直在使用JavaFX在NetBeans上进行项目,但遇到了问题。当我运行我的应用程序时,它运行良好,但是如果我尝试右键单击主类并调试或运行它,控制台将显示以下错误:
Error: Could not find or load main class org.ui.Main
但是班级在那里。这是我要尝试的同一门课... 我已经尝试创建一个新项目并移走文件,但是当我创建一个新项目时,新的主类也会发生相同的问题。 我已经尝试删除缓存,但是也没有成功。
有人知道这是什么原因吗?
这是主要的班级代码:
package org.ui;
import javafx.application.Application;
import static javafx.application.Application.launch;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;
public class Main extends Application {
@Override
public void start(Stage stage) throws Exception {
Parent root =
FXMLLoader.load(getClass().getResource("/fxml/MainMenu.fxml"));
Scene scene = new Scene(root);
scene.getStylesheets().add("/styles/Styles.css");
stage.setTitle("Fichas Técnicas");
stage.setScene(scene);
stage.centerOnScreen();
stage.show();
}
/**
* The main() method is ignored in correctly deployed JavaFX application.
* main() serves only as fallback in case the application can not be
* launched through deployment artifacts, e.g., in IDEs with limited FX
* support. NetBeans ignores main().
*
* @param args the command line arguments
*/
public static void main(String[] args) {
launch(args);
}
}