初始化后@FXML控制器组件为空

时间:2018-02-24 12:19:06

标签: java-8

我查看过thisthisthis,但遗憾的是没有一个可以解决我的问题。组件始终为null。 ids是一样的,但我仍然不知道我做错了什么。以下是我的代码:

申请类。

public class Main extends Application {
@Override
public void start(Stage primaryStage) throws Exception {
    Parent root = FXMLLoader.load(LocalFileUtils.getResourceAsURL("RootView.fxml"));
    primaryStage.setScene(new Scene(root));
    primaryStage.show();

}

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

RootView.fxml

 <?xml version="1.0" encoding="UTF-8"?>

<?import java.lang.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.shape.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.ColumnConstraints?>
<?import javafx.scene.layout.RowConstraints?>

<BorderPane id="mainPane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="main.MainViewController">
   <center>
      <AnchorPane id="mainAnchorPane" prefHeight="200.0" prefWidth="200.0" BorderPane.alignment="CENTER" />
   </center>
</BorderPane>

控制器类

    package main;

import java.net.URL;
import java.util.ResourceBundle;

import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.layout.AnchorPane;

public class MainViewController implements Initializable {
    @FXML
    private AnchorPane mainAnchorPane;

    @Override
    public void initialize(URL location, ResourceBundle resources) {
        // TODO Auto-generated method stub
        System.out.println("Started");
        System.out.println(location); // Prints out he URL of the RootView
        System.out.println(resources); //Always Null
        System.out.println(mainAnchorPane); //Always Null
    }

}

该应用运行正常。我错过了什么吗?

2 个答案:

答案 0 :(得分:2)

在FXML中,您需要定义不同的ID。 FXML中的id必须像这样

Fx:id="mainAnchorPane"

答案 1 :(得分:0)

我将fxml修改为@jonx建议的内容,一切正常。下面是新的FXML。

 <AnchorPane  fx:id="mainAnchorPane" prefHeight="200.0" prefWidth="200.0" BorderPane.alignment="CENTER" />