我有2个控制器和3个FXML文件。
的 1。控制器:
MainController.java
在这个控制器中,我使用BorderPane创建舞台和场景。在BorderPane的中心,我想改变布局(GridPane,HBox等)
public class MainController {
//Main BorderPane
private BorderPane borderPane;
@FXML
private void initialize() {
try {
FXMLLoader mainLoaderFXML = new FXMLLoader();
mainLoaderFXML.setLocation(getClass().getResource("BaseView.fxml"));
borderPane = (BorderPane) mainLoaderFXML.load();
Stage mainStage = new Stage();
mainStage.setTitle("Border Pane");
Scene mainScene = new Scene(borderPane);
mainStage.setScene(mainScene);
FXMLLoader loader = new FXMLLoader();
loader.setLocation(getClass().getResource("CenterView1.fxml"));
//BorderPane in CenterView1.fxml
BorderPane centerView1 = (BorderPane) loader.load();
borderPane.setCenter(centerView1);
mainStage.show();
} catch (IOException e) {
e.printStackTrace();
}
}
//Get BorderPane
public BorderPane getBorderPane() {
return this.borderPane;
}
}
SecondController.java
在SecondController中,我想用help radioButton改变borderPane MainController的中心。
public class SecondController {
@FXML
private ToggleGroup radioButtons;
@FXML
private void initialize() {
radioButtons.selectedToggleProperty().addListener(new ChangeListener<Toggle>() {
public void changed(ObservableValue<? extends Toggle> ov,
Toggle old_toggle, Toggle new_toggle) {
if (radioButtons.getSelectedToggle() != null) {
RadioButton chk = (RadioButton)new_toggle.getToggleGroup().getSelectedToggle();
switch(chk.getText()){
case "rbFirst":
System.out.println("Default View CenterView1");
break;
case "rbSecond":
FXMLLoader mainLoaderFXML = new FXMLLoader();
mainLoaderFXML.setLocation(getClass().getResource("BaseView.fxml"));
MainController mainController = (MainController)mainLoaderFXML.getController();
//And now i want to change new FXML-file into center, but i have a NULLPointerException
System.out.println(mainController.getDefaultNormsLayout().setCenter("CenterView2"));
break;
}
}
}
});
}
}
的 2。 FXML文件:
0.BaseView.fxml - 基本视图
1。 CenterView1.fxml (默认情况下) - 它在基本视图中心的BorderPane
2。 CenterView2.fxml - 它在基本视图中心的DataGrid
当我点击 rbSecond 时,我会在 mainController.getDefaultNormsLayout()中看到 NullPointerException 。我知道它是什么,但我不知道解决它的问题。我使用JavaFX class controller scene reference,enter link description here等,但我不知道如何申请我的任务。
谢谢!
答案 0 :(得分:1)
从我的评论中回答:
nullpointer发生,因为在FXMLLoader的加载操作之前未初始化控制器。这将创建MainController类的另一个实例。如果未覆盖默认JavaFX,则此实例与初始实例不同。 请参阅FXMLLoader类的setControllerFactory方法。请记住,不重复使用FXMLLoader类非常重要。
以下内容应确保mainController不再为null。
FXMLLoader mainLoaderFXML = new FXMLLoader();
mainLoaderFXML.setLocation(getClass().getResource("BaseView.fxml"));
mainLoaderFXML.load();
MainController mainController = (MainController)mainLoaderFXML.getController();
Singleton Controller
使用您选择的单身机制并获取实例。如果要控制创建控制器classe使用。
mainLoaderFxml.setControllerFactory(new Callback() {
public Object call(Class<?> clazz) {
return instance of your class;
}
}