我有一个大型资源文件用于整个应用程序,所以如果我只能为整个JavaFX场景设置它而不是每次我new FXMLLoader(...)
都是好的。
有办法吗?
答案 0 :(得分:1)
据我所知,没有设置默认资源包的机制。如果需要,您始终可以创建实用程序方法:
public class MyUtils {
private static final ResourceBundle bundle = ... ;
public static FXMLLoader getLoader(URL location) {
return new FXMLLoader(location, bundle);
}
}