无法在javaFX中向表中添加数据

时间:2013-09-06 08:33:16

标签: java javafx javafx-2 scenebuilder

如下面的代码所示,我尝试将一些数据I添加到表中。但是当我运行应用程序时,它只显示空表。这个问题的可能原因是什么?

package com.fg.transbridge.tool.ui;

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

import javafx.beans.property.SimpleStringProperty;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TableView;
import javafx.scene.control.cell.PropertyValueFactory;

public class TableViewController implements Initializable {

    @FXML
    private TableColumn<Person, String> colX;
    @FXML
    private TableColumn<Person, String> colY;

    @Override
    public void initialize(URL arg0, ResourceBundle arg1) {

        final TableView<Person> table = new TableView<Person>();
        final ObservableList<Person> data = FXCollections.observableArrayList(new Person("Jacob", "Smith"), new Person("Isabella", "Johnson"), new Person("Ethan", "Williams"),
                new Person("Emma", "Jones"), new Person("Michael", "Brown"));

        colX.setCellValueFactory(new PropertyValueFactory<Person, String>("firstName"));

        colY.setCellValueFactory(new PropertyValueFactory<Person, String>("lastName"));

        table.setItems(data);
        table.getColumns().addAll(colX, colY);

    }

    public static class Person {

        private final SimpleStringProperty firstName;
        private final SimpleStringProperty lastName;

        private Person(String fName, String lName) {
            this.firstName = new SimpleStringProperty(fName);
            this.lastName = new SimpleStringProperty(lName);

        }

        public String getFirstName() {
            return firstName.get();
        }

        public void setFirstName(String fName) {
            firstName.set(fName);
        }

        public String getLastName() {
            return lastName.get();
        }

        public void setLastName(String fName) {
            lastName.set(fName);
        }

    }

}

FXML文件包含以下代码以及更多代码:

TableView.fxml

<TableView layoutX="172.0" layoutY="106.0" prefHeight="200.0" prefWidth="200.0">
      <columns>
        <TableColumn prefWidth="75.0" text="Column X" fx:id="colX" />
        <TableColumn prefWidth="75.0" text="Column Y" fx:id="colY"/>
      </columns>
    </TableView>

2 个答案:

答案 0 :(得分:3)

您正在创建和发布table数据,这些数据从未在FXML文件中引用过,并且从未在节点图中显示过。

您必须向fx:id元素添加TableView属性:

<TableView fx:id= "table "layoutX="172.0" layoutY="106.0" prefHeight="200.0" prefWidth="200.0">

参考控制器中的表格

@FXML    
TableView<Person> table

删除final TableView<Person> table = new TableView<Person>(); FXMLLoader将为您初始化所有组件。

使用TableViewFXML查看此example

答案 1 :(得分:0)

你的问题很简单。您创建一个新的TableView,但该列已经在您的fxml中的tableview上。只需删除:

final TableView<Person> table = new TableView<Person>();

并添加

@FXML
private TableView table;