使用fxml使用javafx填充表数据

时间:2013-11-23 13:03:27

标签: java javafx fxml

我很难尝试为此得到答案。 Oracle出于某种原因没有在他们的网站上记录文件?!已经在stackoverflow上询问过它(JavaFX: TableView(fxml) filling with dataJavaFX FXML table; why won't my data display),但是当我尝试使用给出的答案重新创建时,我仍然无法让它工作。如果有人能够提供帮助,我将非常感激!我会把所有的代码放在一起。

public class Heroes extends Application {

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

    @Override
    public void start(Stage primaryStage) throws Exception {
        try {
            AnchorPane page = FXMLLoader.load(Heroes.class.getResource("FXMLDocument.fxml"));

            Scene scene = new Scene(page);
            primaryStage.setScene(scene);
            primaryStage.setTitle("Sample Window"); 
            primaryStage.setResizable(false); 
            primaryStage.show();
        } catch (Exception e) {
        }
    }
}

public class FXMLDocumentController implements Initializable {

    /**
     * Initializes the controller class.
     */
    @FXML
    TableView<Table> tableID;
    @FXML
    TableColumn<Table, Integer> tID;
    @FXML
    TableColumn<Table, String> tName;
    @FXML
    TableColumn<Table, String> tDate;
    @FXML
    TableColumn<Table, String> tPrice;
    int iNumber = 1;
    ObservableList<Table> data =
            FXCollections.observableArrayList(
            new Table(iNumber++, "Superman", "12/02/2013", "20"),
            new Table(iNumber++, "Batman", "2/02/2013", "40"),
            new Table(iNumber++, "Aquaman", "1/02/2013", "100"),
            new Table(iNumber++, "The Flash", "12/02/2013", "16"));

    @Override
    public void initialize(URL url, ResourceBundle rb) {
        // System.out.println("called");

        tID.setCellValueFactory(new PropertyValueFactory<Table, Integer>("rID"));
        tName.setCellValueFactory(new PropertyValueFactory<Table, String>("rName"));
        tDate.setCellValueFactory(new PropertyValueFactory<Table, String>("rDate"));
        tPrice.setCellValueFactory(new PropertyValueFactory<Table, String>("rPrice"));
        tableID.setItems(data);

    }
}

public class Table {

    SimpleIntegerProperty rID;
    SimpleStringProperty rName;
    SimpleStringProperty rDate;
    SimpleStringProperty rPrice;

    public Table(int rID, String rName, String rDate, String rPrice) {
        this.rID = new SimpleIntegerProperty(rID);
        this.rName = new SimpleStringProperty(rName);
        this.rDate = new SimpleStringProperty(rDate);
        this.rPrice = new SimpleStringProperty(rPrice);
        System.out.println(rID);
        System.out.println(rName);
        System.out.println(rDate);
        System.out.println(rPrice);
    } 

    public Integer getrID() {
        return rID.get();
    }

    public void setrID(Integer v) {
        this.rID.set(v);
    }

    public String getrDate() {
        return rDate.get();
    }

    public void setrDate(String d) {
        this.rDate.set(d);
    }

    public String getrName() {
        return rName.get();
    }

    public void setrName(String n) {
         this.rDate.set(n);
    }

    public String getrPrice() {
        return rPrice.get();
    }

    public void setrPrice(String p) {
       this.rPrice.set(p); 
    }
}
<AnchorPane id="AnchorPane" prefHeight="400.0" prefWidth="600.0" xmlns:fx="http://javafx.com/fxml" fx:controller="heroes.FXMLDocumentController">
  <children>
    <SplitPane dividerPositions="0.535175879396985" focusTraversable="true" orientation="VERTICAL" prefHeight="400.0" prefWidth="600.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
      <items>
        <AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="100.0" prefWidth="160.0">
          <children>
            <TableView fx:id="tableID" prefHeight="210.0" prefWidth="598.0" tableMenuButtonVisible="true" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
              <columns>
                <TableColumn minWidth="20.0" prefWidth="40.0" text="ID" fx:id="tID" >
                    <cellValueFactory>
                       <PropertyValueFactory property="tID" />
                     </cellValueFactory>
                </TableColumn>
                <TableColumn prefWidth="100.0" text="Date" fx:id="tDate" >
                    <cellValueFactory>
                       <PropertyValueFactory property="tDate" />
                    </cellValueFactory>
                 </TableColumn>
                <TableColumn prefWidth="200.0" text="Name" fx:id="tName" >
                    <cellValueFactory>
                       <PropertyValueFactory property="tName" />
                     </cellValueFactory>
                </TableColumn>
                <TableColumn prefWidth="75.0" text="Price" fx:id="tPrice" >
                     <cellValueFactory>
                       <PropertyValueFactory property="tPrice" />
                     </cellValueFactory>
                </TableColumn>
              </columns>
            </TableView>
          </children>
        </AnchorPane>
        <AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="100.0" prefWidth="160.0" />
      </items>
    </SplitPane>
  </children>
</AnchorPane>

1 个答案:

答案 0 :(得分:1)

PropertyValueFactory尝试以两种方式查找您的数据值:

1)寻找一种方法,例如nameProperty其中name是您在构造函数中指定的内容,例如{ “RID”。

因此,您需要一个名为this的方法(字段名称+“Property”):

public IntegerProperty rIDProperty() {
    return rID;
}

与您的其他财产类似。

2)如果这些不存在,它会查找名为getName其中Name是您在构造函数中指定的第一个字母大写(遵循Java Bean规则)。

在你的例子中你没有1)但你似乎有2) - 但你没有在getter和setter中大写属性名的第一个字母!

所以将这些改为例如。

public Integer getRID() {
    return rID.get();
}

类似。

你需要1)或2)但最好同时拥有两者。

另请注意,问题与FXML无关。