2

我正在通过E(fx)clipseJava Scene Builder 构建JavaFX 应用程序。

基本功能是登录窗口。登录后,新窗口打开,登录窗口消失。现在它只是在原型阶段。

当 ecplise 用完时,我想要的功能就在那里。登录窗口在启动时显示(代码看起来像这样)

@Override
public void start(Stage primaryStage) {
    try {
        Parent root = FXMLLoader.load(getClass().getResource("view/login.fxml"), ResourceBundle.getBundle("ca.sportstats.resources.labels"));

        primaryStage.setTitle("SportStats Live Update Tool : Login");
        primaryStage.setScene(new Scene(root, 450, 300));
        primaryStage.show();
    } catch (IOException e) {
        //Change this to open a small popup window.
        System.out.println("Could not deploy");
    }
}

public static void main(String[] args) {
    launch(args);
}

这个窗口上有一个按钮可以打开另一个按钮(登录逻辑稍后会出现,这里不是问题)。

    btnLogin.setOnAction(new EventHandler<ActionEvent>() {
        public void handle(ActionEvent event) {

            //TODO: Login logic.
            //On success allow to open the tool (aka main window);

            Parent root;
            try {
                root = FXMLLoader.load(getClass().getResource("../view/selector.fxml"), resources);
                Stage stage = new Stage();
                stage.setTitle("Selector");
                stage.setScene(new Scene(root, 450, 450));
                stage.show();

                //hide this current window
                ((Node)(event.getSource())).getScene().getWindow().hide();

            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    });

这在 Ecplise 中没有问题。但!当我构建它时(以e(fx)clipse 教程中描述的方式,我得到了一个可执行的 jar,但只得到了登录窗口。当我点击我的按钮时,第二个窗口不会出现。

4

1 回答 1

4

我认为的问题是在罐子里你不能做相对路径。在 Eclipse 中,您在文件系统上运行,这不是问题

于 2013-01-09T16:21:06.513 回答