how to locate fxml from another package?
问题 I have created a simple JavaFX application. It has two packages the main class is JFXTest2.java is in good package and the fxml and it's controller are in JFXTest2 package. now the problem is that i can not load the fxml in the main class. I tried loading the fxml like this: Parent root = FXMLLoader.load(getClass().getResource("jfxtest2.Screen.fxml")); and Parent root = FXMLLoader.load(getClass().getResource("jfxtest2/Screen.fxml")); and also Parent root = FXMLLoader.load(new URL("/jfxtest2