2016-12-07 70 views
0

我是JavaFX的新手,雖然我想加載fxml文件,但我使用的是波紋管代碼。如何設置javaFX中的fxml文件的位置?

FXMLLoader loader=new FXMLLoader(); 
loader.setLocation(Main.class.getResource("view/secondAttempt.fxml")); 

我很好奇有關設置位置的新方法。我不喜歡用

Main.class.getResource("view/secondAttempt.fxml") 

是否有設置該fxml文件的位置,任何簡單的方法? 我正在尋找一種不需要記住如此多信息以使用fxml文件的新解決方案。例如:

loader.setLocation("C:/view/secondAttempt.fxml")); 
+0

我已經找到了更短的方式加載'fxml'文件。 'loader.setLocation(的getClass()。的getResource( 「觀看/ secondAttempt.fxml」))'。但我正在尋找更短的路。 – Delsa

回答

1

如果你有大量的負載要求的,只是做一個小工具功能:

public class FXMLUtil { 
    // loads an FXML file from a location relative to this class. 
    public static <T> T load(String loc) throws IOException { 
     FXMLLoader loader = new FXMLLoader(); 
     loader.setLocation(FXMLUtil.class.getResource(loc)); 
     return loader.load(); 
    } 
} 

使用它,像這樣:

Parent content = FXMLUtil.load("view/secondAttemp‌​t.fxml"); 
+0

感謝您的幫助。 – Delsa

相關問題