下面是異常輸出。我認爲該程序無法檢索FXML文件「home.FXML」;它在這條線上失敗:JavaFX可執行文件JAR遇到加載FXML文件的問題,爲什麼不加載FXML?
Parent root = FXMLLoader.load(getClass().getResource("/fxml/home.fxml"));
這是加載FXML的類的其餘部分。
public class Boorus extends Application{
public static void main(String[] args){
launch(args);
}
public void start(Stage primaryStage) throws Exception{
SQLboss.makeTables();
Parent root = FXMLLoader.load(getClass().getResource("/fxml/home.fxml"));
Scene scene = new Scene(root);
primaryStage.setScene(scene);
primaryStage.setTitle("Boorus");
primaryStage.show();
}
}
我的項目結構看起來如右圖所示:
Pastebinned異常這裏:http://pastebin.com/rWkRuury