gpt4 book ai didi

java - eclipse 错误 "Could not find or load main class"

转载 作者:搜寻专家 更新时间:2023-10-30 19:48:26 24 4
gpt4 key购买 nike

我知道这个问题有很多重复的问题,但我都看过了,没有一个能解决问题。

我正在尝试运行一个具有主要功能的类。我清理了项目,检查了类路径中的“.”,将 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

最佳答案

如果您遇到类似的问题,这与 Eclipse 中的“运行配置”无法正常工作有关。

error1

请右键单击包含主要方法的 java 类。转到运行方式-> 运行配置并输入正确的参数。项目应该是包含主类的项目,主类应该是完全合格的类名。请参阅为了清楚起见,下面的快照。它应该可以正常工作。基本上,您正在创建一个运行配置,您也可以使用该保存的配置供以后使用。

selecting run configuration parameters to be entered correctly

关于java - eclipse 错误 "Could not find or load main class",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26003352/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com