gpt4 book ai didi

java - 无法使用命令行运行javafx项目

转载 作者:行者123 更新时间:2023-11-30 03:28:28 24 4
gpt4 key购买 nike

我最近在 eclipse 中创建了 javafx 项目,我在 eclipse 中成功运行,并且工作正常。我想使用命令行界面运行我的项目。

我能够成功编译,但无法运行,并且不断给出“错误:无法找到或加载主类 Main”

Compile command (Works fine): 

javac -cp "C:\Program Files (x86)\Oracle\JavaFX 2.2 Runtime\lib\jfxrt.jar" Main.java

Main.class is created after the above command.

Run Command (doesn't work):
java -cp "C:\Program Files (x86)\Oracle\JavaFX 2.2 Runtime\lib\jfxrt.jar;." Main

我想知道我在这里缺少什么才能成功运行它。

添加Main.java

package application;

import java.io.IOException;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.stage.Stage;
import javafx.scene.Scene;
import javafx.scene.layout.AnchorPane;
import javafx.scene.layout.BorderPane;


public class Main extends Application {
private Stage primaryStage;
private BorderPane root;
@Override
public void start(Stage primaryStage) {
try {
this.primaryStage = primaryStage;
primaryStage.setTitle("Mojo");
initRootLayout();
showMapLayout();
} catch(Exception e) {
e.printStackTrace();
}
}

private void showMapLayout() {
try {
FXMLLoader loader = new FXMLLoader();
loader.setLocation(Main.class.getResource("/application/viewControllers/mapView.fxml"));
AnchorPane mapPane = (AnchorPane)loader.load();
root.setCenter(mapPane);
} catch (IOException e) {
e.printStackTrace();
}

}

private void initRootLayout() {
try{
FXMLLoader loader = new FXMLLoader();
loader.setLocation(Main.class.getResource("/application/viewControllers/RootLayout.fxml"));

root = (BorderPane)loader.load();
Scene scene = new Scene(root);
primaryStage.setScene(scene);
primaryStage.show();
}catch(Exception e){
System.out.println(e.getMessage());
}
}

public static void main(String[] args) {
launch(args);
}
}

最佳答案

您的类被声明为位于application包中。因此,要编译它以获得正确的文件夹结构,您应该使用 -d 选项进行编译:

javac -cp "C:\Program Files (x86)\Oracle\JavaFX 2.2 Runtime\lib\jfxrt.jar" -d . Main.java

这应该创建一个名为 application 的目录,并且 Main.class 将位于其中。

然后执行(从同一文件夹,而不是从 application 文件夹)

java -cp "C:\Program Files (x86)\Oracle\JavaFX 2.2 Runtime\lib\jfxrt.jar";. application.Main

关于java - 无法使用命令行运行javafx项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29638831/

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