这是我的代码
@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异常。似乎calendarContainer
在initialize()
和keyPressed
之间的某个时刻变得无效。我检查了我的代码,在我的程序中没有任何一点我更改calendarContainer
的值或重新分配它,它只在FXML文件中创建。
<HBox fx:id="calendarContainer" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" styleClass="calendarContainer" />
为什么FXML对象会被删除(也许是一个触发快乐的垃圾收集器?)但是int不会?
不要使用Application
类作为控制器类:它使得很难跟踪哪些字段在类的哪些实例中被初始化。
为什么FXML对象会被删除
它没有。
带注释的字段@FXML
仅在控制器中初始化。当您加载FXML文件时,FXMLLoader
会创建由fx:controller
属性指定的类的实例,创建与FXML中的元素对应的对象,然后将控制器中的字段设置为它创建的对象。最后,它在控制器上调用initialize()
。
所以在这种情况下,calendarContainer
在控制器中初始化(这就是你在initialize()
方法中看到一个非空值的原因),但它永远不会在调用Application
的start()
类的实例中初始化。所以它在某些时候不会突然变为空:它总是为空。
您应该为控制器创建一个单独的类:
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();
}
}