我在JavaFX中做了这个教程,并在"标记的行上得到了一个空指针异常。 << - 的NullPointerException&#34 ;.我只是不明白为什么会这样。有帮助吗? "这个"的方法也给了。其余的代码非常正确我相信。还给出了错误描述。
public class MainApp extends Application{
private Stage primaryStage;
private BorderPane rootLayout;
private ObservableList<Person> personData = FXCollections.observableArrayList();
public MainApp() {
personData.add(new Person("Stefan", "Meier"));
personData.add(new Person("Martin", "Mueller"));
}
@Override
public void start(Stage primaryStage) throws Exception {
this.primaryStage = primaryStage;
this.primaryStage.setTitle("AddressApp");
try {
FXMLLoader loader = new FXMLLoader(ClassLoader.getSystemResource("sample.fxml"));
rootLayout = (BorderPane) loader.load();
Scene scene = new Scene(rootLayout);
primaryStage.setScene(scene);
primaryStage.show();
} catch (IOException iox){
iox.printStackTrace();
}
showPersonOverview();
}
public Stage getPrimaryStage() {
return primaryStage;
}
public void showPersonOverview() {
try {
FXMLLoader loader = new FXMLLoader(ClassLoader.getSystemResource("fxcontroller.fxml"));
AnchorPane overviewPage = (AnchorPane) loader.load();
rootLayout.setCenter(overviewPage);
// Give the controller access to the main app
Controller controller = loader.getController();
controller.setMainApp(this); // <<--NullPointerException
} catch (IOException e) {
e.printStackTrace();
}
}
public ObservableList<Person> getPersonData(){
return personData;
}
public static void main(String[] args) {
launch(args);
}
}
类控制器中的方法setMainApp()。这个类中的其他代码是正确的,我确定大多数代码只是设置并获取或创建按钮和标签。
@FXML
private TableView<Person> personTable;
private MainApp mainApp;
public void setMainApp(MainApp mainApp) {
this.mainApp = mainApp;
personTable.setItems(mainApp.getPersonData());
}
这是fxcontroller.fxml文件的第一部分,它给出了AnchorPane
<?xml version="1.0" encoding="UTF-8"?>
//import statements
<AnchorPane prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="sample.Controller">
.....
错误消息:
Exception in Application start method java.lang.reflect.InvocationTargetException .... Caused by: **java.lang.NullPointerException** ....
很抱歉让说明时间过长。我希望我知道如何缩短它。
答案 0 :(得分:-1)
无法加载您的控制器。这就是你获得nullpointerexception的原因。