Eclipse 错误“无法找到或加载主类”
2022-09-03 08:38:54
我知道这个问题有很多重复,但我已经看了它们,没有一个解决了这个问题。
我正在尝试运行一个具有 main 函数的类。我已经清理了项目,检查了“.”的类路径,将bin文件夹添加到运行配置下的类路径中。我不确定该尝试什么,因为该类肯定在源文件夹中。
有人可以帮我解决这个问题吗?
package testIt;
public class MemoryVisualizerApp extends Application{
public static void main(String[] args) {
launch(args);
}
//Setup the scene and launch with given properties
@Override
public void start(Stage primaryStage) throws IOException{
Parent root = FXMLLoader.load(getClass().getResource("/MemoryVisualizer.fxml"));
Scene scene = new Scene(root, 650, 300);
//Set whether the screen should be re-sizable (possibly best size = default)
primaryStage.setResizable(true);
primaryStage.setMinHeight(300);
primaryStage.setMinWidth(550);
primaryStage.setTitle("Memory Usage");
primaryStage.setScene(scene);
scene.getStylesheets().add("testIt/MemoryVisualizer.css");
primaryStage.setOnCloseRequest(new EventHandler<WindowEvent>()
{
public void handle(WindowEvent e){
/*Currently the threads continue running after window is closed. Looking for
a way to stop the app threads when window closed without stopping the program.*/
}
});
primaryStage.show();
primaryStage.show();
}
}
此代码位于包中,具有 src 文件夹。它利用了一些未显示的JavaFX文件,但这不应该是一个问题。
这是错误: 错误: 找不到或加载主类 testIt.MemoryVisualizerApp