1

我想在 javaFX 2 中创建一个应用程序,它作为一个较小的登录窗口打开,然后,当您输入正确的数据时,它会将您带到更大的主窗口。两者都是用 fxml 设计的,事件在 java 代码中处理。

是的,我知道,它与示例中的应用程序几乎相同,我已经尝试做我想做的事情并且它在那里工作。

现在,当我在我的项目中做同样的事情时,当我想更改阶段的值时遇到了问题。

正如你在下面的代码中看到的,我有一个全局变量,我在 start 方法中设置了 primaryStage 的值。就像测试一样,我在 start 方法结束时将其打印出来并设置了值。

然后,当我在单击按钮时尝试使用它(方法 buttonClick)时,阶段变量的值为 null,因此我不能用它来调整窗口大小或其他任何东西。

我的问题是,尽管我没有使用更改两个打印件之间的任何内容,但为什么要重置阶段变量值?

此代码是我尝试过的示例,我刚刚删除了所有对于理解我的应用程序如何工作并不重要的代码。

public class App extends Application {

    private Stage stage;
    @FXML
    private AnchorPane pane;

    @Override
    public void start(Stage primaryStage) {
        try {
            stage = primaryStage; // Set the value of primaryStage to stage
            primaryStage.setScene(new Scene(openScene("Login"))); // Load Login window
            primaryStage.show(); // Show the scene
        } catch (IOException ex) {
            Logger.getLogger(App.class.getName()).log(Level.SEVERE, null, ex);
        }
        System.out.println(stage);// <-- Here it has the value of primaryStage obviously
    }

    @FXML
    void buttonClick(ActionEvent event) throws IOException {
    // Note that even if I try to print here, the value of stage is still
    // null, so the code doesn't affect it
    // Also, this loads what I want, I just can't change the size.
        try{
           pane.getChildren().clear(); // Clear currently displayed content
           pane.getChildren().add(openScene("MainScene")); // Display new content
           System.out.println(stage); // <-- Here, output is null, but I don't know why
           stage.setWidth(500); // This line throws error because stage = null
        } catch (IOException ex) {
           Logger.getLogger(App.class.getName()).log(Level.SEVERE, null, ex);
        }

    }  

    public Parent openScene(String name) throws IOException {
        //Code from FXML login example
        Parent parent = (Parent) FXMLLoader.load(PrijavnoOkno.class.getResource(name
                + ".fxml"), null, new JavaFXBuilderFactory());
        return parent;
    }

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

1 回答 1

2

虽然不清楚 buttonClick 操作方法是由谁以及在何处调用的,但我认为它是登录按钮的操作Login.fxml。此外,我假设您已将App(aka PrijavnoOkno) 定义为此 Login.fxml 的控制器。
根据这些假设,App.class 有 2 个实例:
一个是在应用程序启动时创建的,并且在start()方法中为 stage 变量分配了主要阶段,
另一个由 FXMLLoader 创建的实例(在加载 Login.fxml 时),其中未分配阶段变量,因此未分配 NPE。
一种正确的方法是,为 Login.fxml 创建一个新的 Controller 类,在其中调用您的登录操作。从那里访问全局舞台(通过在 App 中使其成为静态)。

于 2012-08-13T12:20:29.077 回答