gpt4 book ai didi

java - Jar 找不到 .fxml 文件的路径

转载 作者:行者123 更新时间:2023-12-02 09:43:34 24 4
gpt4 key购买 nike

我正在 javafx 中开发一个桌面应用程序,与 Intellij 不同,他的 jar 文件返回 null getClass().getResource(pagePath) .

当我使用 Intellij 构建并运行应用程序时,一切正常并完成工作,但是在我创建工件并使用命令行运行 .jar 文件后,我收到错误:

'Exception in thread "JavaFX Application Thread"

java.lang.NulPointerException:需要位置。'经过多次研究和测试,我发现调用getClass().getResource(pagepath)在 .jar 中返回 null,但在 Intellij 中则不返回 null。我尝试过改变编写路径的方式,改变模式并改变项目的结构。

这里是罪名方法

protected void loadPage(ActionEvent event, String pagePath) throws IOException {
System.out.println(getClass().getResource(pagePath));
Parent pageParent = FXMLLoader.load(getClass().getResource(pagePath));
Scene newPage = new Scene(pageParent);
pageParent.getStylesheets().add(Views.CSS);
Stage window = (Stage) ((javafx.scene.Node)event.getSource()).getScene().getWindow();
window.setScene(newPage);
window.show();
}

程序的初始化工作,.jar 文件在主类中使用此方法正确启动第一页。

@Override
public void start(Stage primaryStage) throws Exception{
Parent root = FXMLLoader.load(getClass().getResource(Views.XML_ACCUEIL));
primaryStage.getIcons().add(new Image(Views.APP_ICON));
primaryStage.setTitle(Views.APP_NAME);
primaryStage.setScene(new Scene(root, Views.WIDTH, Views.HEIGHT));
primaryStage.show();
}

View 类如下所示:

public class Views {
public static final String home = System.getProperty("user.home");
public static final String REGISTER_FOLDER = home + File.separator + "Desktop" + File.separator;
public static final String XML_ACCUEIL = "resources/accueil.fxml";
public static final String XML_VENTE_FORM = "resources/vente_form.fxml";
public static final String XML_DEPOT_FORM = "resources/depot_form.fxml";
public static final String XML_TECHNIQUE_FORM_1 = "resources/technique_form_1.fxml";
public static final String XML_TECHNIQUE_FORM_2 = "resources/technique_form_2.fxml";
public static final String XML_TECHNIQUE_FORM_3 = "resources/technique_form_3.fxml";
//{some others var}
public static final String CSS = "sample/resources/style.css";
public static final String APP_NAME = "World Of Cars Desktop";
public static final String APP_ICON = "sample/resources/logo_petit.png";
public static final int WIDTH = 1280;
public static final int HEIGHT = 720;
}

结构如下:

-src
-sample
-controller
{all my controller class}
-resources
{all my fxml files}
-DocFiller
-Main
-Views

使用 Intellij,一切都像我说的那样完美地工作,但是 .jar 文件只是启动主页,当我使用按钮时,通常会调用 loadPage 方法并出现下一页,但相反,当我使用按钮时,会抛出错误我尝试加载除主页之外的任何其他页面。所有的页面、图片、资源都以同样的方式存储和调用。

最佳答案

我期望“/accueil.fxml”“/resources/accueil.fxml”。使用 7tzip 等查看 jar 中的真实路径是什么。

资源路径"resources/accueil.fxml"表示在类路径中,getClass()子目录(类的包目录)下应该有是子目录resources

另一个错误是,当不启动 jar 时,文件名在 Windows 中仅不区分大小写。 jar (zip) 文件,Linux 和 Mac 都有区分大小写的文件名。检查区分大小写的拼写。

关于java - Jar 找不到 .fxml 文件的路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56851470/

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