gpt4 book ai didi

java - 无法将数据添加到 javaFX 中的表

转载 作者:行者123 更新时间:2023-11-29 05:38:20 25 4
gpt4 key购买 nike

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

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>

最佳答案

您正在创建数据并将其发布到 table在您的 FXML 中从未被引用过文件并且从不在节点图中可见。

你必须添加一个 fx:id属性为 TableView元素:

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

在 Controller 中引用表格

@FXML    
TableView<Person> table

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

查看此 example使用 TableViewFXML .

关于java - 无法将数据添加到 javaFX 中的表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18653339/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com