JavaFX FXML表;为什么我的数据不显示 [英] JavaFX FXML table; why won't my data display

查看:354
本文介绍了JavaFX FXML表;为什么我的数据不显示的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用FXML创建一个简单的表。该表显示正常,但它不显示我的数据。这是我的主程序。

I'm trying to create a simple table using FXML. The table displays fine, but it's not displaying my data. Here's my main program.

public final class TableTest extends Application {

    @Override
    public void start(final Stage primaryStage) {
       URL fxml = ClassLoader.getSystemClassLoader().getResource("Table.fxml");
        FXMLLoader fxmlLoader = new FXMLLoader(fxml);
        TableController tableController = new TableController();
        fxmlLoader.setController(tableController);
        try {
            Pane rootPane = (Pane) fxmlLoader.load();
            Scene scene = new Scene(rootPane);
            primaryStage.setScene(scene);
            primaryStage.show();
       } catch (IOException e) {
           e.printStackTrace();
       }
    }

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

这是FXML。

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

<?import java.lang.*?>
<?import java.util.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.paint.*?>

<BorderPane prefHeight="400.0" prefWidth="600.0" xmlns:fx="http://javafx.com/fxml">
  <center>
    <TableView fx:id="table">
      <columns>
        <TableColumn text="Column 1" fx:id="col1" minWidth="80.0" />
        <TableColumn text="Column 2" fx:id="col2" minWidth="80.0" />
      </columns>
    </TableView>
  </center>
</BorderPane>

这是控制器。

public final class TableController implements Initializable {

    @FXML
    private TableView<TableData> table;
    @FXML
    private TableColumn<TableData, String> col1;
    @FXML
    private TableColumn<TableData, String> col2;

    @Override
    public void initialize(final URL url, final ResourceBundle resourceBundle) {

        final ObservableList<TableData> data = FXCollections.observableArrayList(
                new TableData("C1R1", "C2R1"),
                new TableData("C1R2", "C2R2")
        );
        table.setItems(data);

        col1.setCellValueFactory(
                new PropertyValueFactory<TableData, String>("col1Property"));
        col2.setCellValueFactory(
                new PropertyValueFactory<TableData, String>("col2Property"));
        table.getColumns().setAll(col1, col2);
    }

    private final class TableData {

        private StringProperty col1Property = new SimpleStringProperty();
        private StringProperty col2Property = new SimpleStringProperty();

        public TableData(final String col1, final String col2) {
            col1Property.set(col1);
            col2Property.set(col2);
        }

        public void setCol1(final String col1) {
            col1Property.set(col1);
        }

        public String getCol1() {
            return col1Property.get();
        }

        public StringProperty col1Property() {
            return col1Property;
        }

        public void setCol2(final String col2) {
            col2Property.set(col2);
        }

        public String getCol2() {
            return col2Property.get();
        }

        public StringProperty col2Property() {
            return col2Property;
        }
    }
}

谁能告诉我我的意思我失踪了?

Can anyone tell me what I'm missing?

推荐答案

你没有遗漏任何东西!实际上你有太多的东西:

You're not missing anything! In fact you're having too much of something:

new PropertyValueFactory<TableData, String>("col1Property"));

构造函数参数应该是相关属性的变量名的字符串值,而不是最后的属性 - 即,在此示例中只是col1。

The constructor parameter should be the string value of the variable name of the relevant property without "Property" at the end - i.e., simply "col1" in this example.

另请参阅无法用带有javafx的项填充表以及用于的Javadoc PropertyValueFactory

这篇关于JavaFX FXML表;为什么我的数据不显示的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆