javafx i18n: "No resources specified" 异常

javafx i18n: "No resources specified" exception

我正在为我的 javafx 应用程序学习 i18n。

文件:

java/
--LoginScreen.java
resources/
--login.fxml
--login_en.properties
--login_ru.properties

LoginScreen.java

@Override
public void start(Stage primaryStage) throws Exception
{
    URL url = getClass().getClassLoader().getResource("login.fxml");

    if (url == null)
    {
        System.err.println("Unable to load UI file.");
        return;
    }

    FXMLLoader loader = new FXMLLoader();
    String localeStr = "en"; //TODO: actual language selection
    loader.setResources(ResourceBundle.getBundle("login", new Locale(localeStr)));
    Parent root = loader.load(url);
    Scene scene = new Scene(root);
    primaryStage.setScene(scene);
    primaryStage.show();
}

login.fxml

<?xml version="1.0" encoding="UTF-8"?>

<?import javafx.scene.control.Label?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.control.PasswordField?>
<?import javafx.scene.layout.VBox?>

<VBox prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8.0.121" xmlns:fx="http://javafx.com/fxml/1" fx:controller="app.LoginScreen">
    <Label text="%label_User" />
    <TextField fx:id="textField_user" />
    <Label text="%label_Password" />
    <PasswordField fx:id="passwordField_password" />
</VBox>

login_en.preperties:

label_User=User:
label_Password=Password:

login_ru.properties:

label_User=Пользователь:
label_Password=Пароль:

我收到以下异常然后它尝试执行 Parent root = loader.load(url)

Exception in Application start method
java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at com.sun.javafx.application.LauncherImpl.launchApplicationWithArgs(LauncherImpl.java:389)
    at com.sun.javafx.application.LauncherImpl.launchApplication(LauncherImpl.java:328)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at sun.launcher.LauncherHelper$FXHelper.main(LauncherHelper.java:767)
Caused by: java.lang.RuntimeException: Exception in Application start method
    at com.sun.javafx.application.LauncherImpl.launchApplication1(LauncherImpl.java:917)
    at com.sun.javafx.application.LauncherImpl.lambda$launchApplication5(LauncherImpl.java:182)
    at java.lang.Thread.run(Thread.java:745)
Caused by: javafx.fxml.LoadException: No resources specified.
/Users/user/Documents/javafx/build/resources/main/login.fxml:9

    at javafx.fxml.FXMLLoader.constructLoadException(FXMLLoader.java:2597)
    at javafx.fxml.FXMLLoader.access0(FXMLLoader.java:103)
    at javafx.fxml.FXMLLoader$Element.resolvePrefixedValue(FXMLLoader.java:421)
    at javafx.fxml.FXMLLoader$Element.processValue(FXMLLoader.java:363)
    at javafx.fxml.FXMLLoader$Element.processPropertyAttribute(FXMLLoader.java:325)
    at javafx.fxml.FXMLLoader$Element.processInstancePropertyAttributes(FXMLLoader.java:235)
    at javafx.fxml.FXMLLoader$ValueElement.processEndElement(FXMLLoader.java:767)
    at javafx.fxml.FXMLLoader.processEndElement(FXMLLoader.java:2823)
    at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:2532)
    at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:2441)
    at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:3214)
    at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:3175)
    at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:3148)
    at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:3124)
    at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:3104)
    at javafx.fxml.FXMLLoader.load(FXMLLoader.java:3097)
    at app.LoginScreen.start(LoginScreen.java:52)
    at com.sun.javafx.application.LauncherImpl.lambda$launchApplication12(LauncherImpl.java:863)
    at com.sun.javafx.application.PlatformImpl.lambda$runAndWait5(PlatformImpl.java:326)
    at com.sun.javafx.application.PlatformImpl.lambda$null3(PlatformImpl.java:295)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.javafx.application.PlatformImpl.lambda$runLater4(PlatformImpl.java:294)
    at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:95)
Exception running application app.LoginScreen

我似乎无法从资源中获取本地化的字符串,但是当我调试它时,我肯定可以看到加载程序正确加载了资源。

我错过了什么,因为我自己无法确定错误。

通过将 URL 传递给 load 方法,您正在调用一个 static load 方法,该方法无权访问您分配给的任何数据FXMLLoader 实例的属性。声明

Parent root = loader.load(url);

Parent root = FXMLLoader.load(url);

编译成相同的字节码。

通过将 URL 作为构造函数参数传递或使用 setLocation 方法来传递 URL 并调用无参数 load 方法:

FXMLLoader loader = new FXMLLoader(url);
String localeStr = "en"; //TODO: actual language selection
loader.setResources(ResourceBundle.getBundle("login", new Locale(localeStr)));
Parent root = loader.load();

您也可以在不创建 FXMLLoader 实例的情况下通过将两个参数传递给 static load 方法来做到这一点:

String localeStr = "en";
Parent root = loader.load(url, ResourceBundle.getBundle("login", new Locale(localeStr)));