我正在用javafx开发桌面应用程序,与Intellij不同,他的jar文件为getClass().getResource(pagePath)
返回null。
当我使用Intellij构建并运行该应用程序时,一切都可以正常工作并完成工作,但是在我创建了工件并使用命令行运行.jar文件之后,出现了错误:
'线程“ JavaFX Application Thread”中的异常
java.lang.NulPointerException:必须提供位置。”经过大量研究和测试,我发现调用getClass().getResource(pagepath)
在.jar中返回null,但在Intellij中却没有。我试图改变编写路径,改变模式和改变项目结构的方式。
这里采用了隐式方法
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方法并显示下一页,但相反,当我尝试加入首页以外的任何其他页面。所有页面,图像和资源都以相同的方式存储和调用。
答案 0 :(得分:1)
我会期望"/accueil.fxml"
或"/resources/accueil.fxml"
。用7tzip或类似的东西在罐子里看。
资源路径"resources/accueil.fxml"
表示在类路径中,getClass()
的子目录(类的包目录)下应该有一个子目录resources
。
另一个错误是,当不启动jar时,文件名在Windows中仅区分大小写。一个jar(zip)文件,Linux和Mac都具有区分大小写的文件名。检查区分大小写的拼写。