FXML对象在使用之前被删除

问题描述 投票:0回答:1

这是我的代码

@FXML
public ScrollPane mainScrollPane;
@FXML
public Label dateScrollerLabel;
@FXML
public HBox calendarContainer;

int x = 5;
@Override
public void start(Stage primaryStage) throws Exception {
    scene = JavaFXUtils.createScene(1000, 600, "Main.fxml", this);
    primaryStage.setScene(scene);
    primaryStage.getIcons().add(new Image(Main.class.getResourceAsStream("/assets/resources/icon/icon_256.png")));
    primaryStage.setTitle("HWP");
    primaryStage.show();

    //*****//
    scene.addEventHandler(KeyEvent.KEY_PRESSED, this::keyPressed);
}

public void initialize() {
    System.out.println(x); // not null
    System.out.println(calendarContainer); // not null
    currentSchedule = new Schedule(mainScrollPane, dateScrollerLabel, calendarContainer); // no nullpointer exception
}

private void keyPressed(KeyEvent keyEvent) {
    switch (keyEvent.getCode()) {
        case A:
            System.out.println(x); // not null
            System.out.println(calendarContainer); // null
            currentSchedule = new Schedule(mainScrollPane, dateScrollerLabel, calendarContainer); // nullpointer exception
            break;
    }
}  

我可以在initialize()方法中运行以下行而不会出现任何错误:

currentSchedule = new Schedule(mainScrollPane, dateScrollerLabel, calendarContainer);

但是,当我之后运行相同的精确代码时,在keyPressed()方法中,抛出了一个nullpointer异常。似乎calendarContainerinitialize()keyPressed之间的某个时刻变得无效。我检查了我的代码,在我的程序中没有任何一点我更改calendarContainer的值或重新分配它,它只在FXML文件中创建。

<HBox fx:id="calendarContainer" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" styleClass="calendarContainer" />

为什么FXML对象会被删除(也许是一个触发快乐的垃圾收集器?)但是int不会?

java javafx garbage-collection javafx-8 fxml
1个回答
2
投票

不要使用Application类作为控制器类:它使得很难跟踪哪些字段在类的哪些实例中被初始化。

为什么FXML对象会被删除

它没有。

带注释的字段@FXML仅在控制器中初始化。当您加载FXML文件时,FXMLLoader会创建由fx:controller属性指定的类的实例,创建与FXML中的元素对应的对象,然后将控制器中的字段设置为它创建的对象。最后,它在控制器上调用initialize()

所以在这种情况下,calendarContainer在控制器中初始化(这就是你在initialize()方法中看到一个非空值的原因),但它永远不会在调用Applicationstart()类的实例中初始化。所以它在某些时候不会突然变为空:它总是为空。

您应该为控制器创建一个单独的类:

public class Controller {

    @FXML
    private ScrollPane mainScrollPane;
    @FXML
    private Label dateScrollerLabel;
    @FXML
    private HBox calendarContainer;

    public void initialize() {
        System.out.println(x); // not null
        System.out.println(calendarContainer); // not null
        currentSchedule = new Schedule(mainScrollPane, dateScrollerLabel, calendarContainer); // no nullpointer exception
    }

    public void keyPressed(KeyEvent keyEvent) {
        switch (keyEvent.getCode()) {
            case A:
                System.out.println(x); // not null
                System.out.println(calendarContainer); // null
                currentSchedule = new Schedule(mainScrollPane, dateScrollerLabel, calendarContainer); // nullpointer exception
                break;
        }
    }  

}

(并更新FXML文件中的fx:controller属性)。

现在你Application类可以做:

public class Main extends Application {

    @Override
    public void start(Stage primaryStage) throws Exception {
        // Not sure what this does, but you probably can't use it without some
        // modification.
        // scene = JavaFXUtils.createScene(1000, 600, "Main.fxml", this);

        // assuming path is correct:
        FXMLLoader loader = new FXMLLoader(getClass().getResource("Main.fxml"));
        Scene scene = new Scene(loader.load(), 1000, 600);

        Controller controller = loader.getController();
        scene.addEventHandler(KeyEvent.KEY_PRESSED, controller::keyPressed);

        primaryStage.setScene(scene);
        primaryStage.getIcons().add(new Image(Main.class.getResourceAsStream("/assets/resources/icon/icon_256.png")));
        primaryStage.setTitle("HWP");
        primaryStage.show();


    }

}
© www.soinside.com 2019 - 2024. All rights reserved.