0

您好,我正在尝试使用 ObservableList 填充我的 JavaFx TableView,如下所示:

 emf = Persistence.createEntityManagerFactory("shopPu");
            em = emf.createEntityManager();
            List<Products> proList = em.createQuery("select p from Products p").getResultList();
            ObservableList<Products> proObs = FXCollections.observableList(proList);
            tableView.setEditable(true);
            tableView.setItems(proObs);

它的工作没有错误我的列表正在填充数据,但 TableView 没有显示任何内容。

这是我的 FXML

<TableView fx:id="tProducts" prefHeight="246.0" prefWidth="726.0" AnchorPane.bottomAnchor="160.0" AnchorPane.leftAnchor="7.0" AnchorPane.rightAnchor="7.0" AnchorPane.topAnchor="70.0">
      <columns>
        <TableColumn text="ID" fx:id="ID"/>
      </columns>
    </TableView>

我试过这个:

<TableView fx:id="tProducts" prefHeight="246.0" prefWidth="726.0" AnchorPane.bottomAnchor="160.0" AnchorPane.leftAnchor="7.0" AnchorPane.rightAnchor="7.0" AnchorPane.topAnchor="70.0">
      <columns>
        <TableColumn text="ID" fx:id="ID">
            <cellValueFactory>
                <PropertyValueFactory property="id" />
            </cellValueFactory>
        </TableColumn>
      </columns>
    </TableView>

但没有运气,它给出了这样的错误:

javafx.fxml.LoadException: PropertyValueFactory is not a valid type.
    at javafx.fxml.FXMLLoader.createElement(Unknown Source)
    at javafx.fxml.FXMLLoader.processStartElement(Unknown Source)

请帮助如何填充 TableView

更新

控制器:

public class MainWindow implements Initializable {

    @FXML private Label lblStatus;
    @FXML private TableView<Products> tableView;
    private EntityManager em;
    private EntityManagerFactory emf;

    @FXML
    private void Refresh_Clicked(javafx.event.ActionEvent event) {
        try {
            emf = Persistence.createEntityManagerFactory("shopPu");
            em = emf.createEntityManager();
            List<Products> proList = em.createQuery("select p from Products p").getResultList();

            ObservableList<Products> proObs = FXCollections.observableList(proList);

            tableView.setEditable(true);
            tableView.setItems(proObs);
        } catch (Exception e) {

                JOptionPane.showMessageDialog(null, e.getMessage());

        }

    }

谢谢。

4

4 回答 4

1

根据你的,FXMLTableView应该命名为tProducts。但这应该在注入过程中产生错误,你能粘贴控制器代码吗?

于 2012-09-04T21:47:59.743 回答
1

如果不进一步分析您的代码示例,发布的错误可能是由于 PropertyValueFactory 的 fxml 中缺少导入引起的。

于 2012-10-02T12:47:29.310 回答
1

我在我的项目中解决了一个语义问题,在 FXML 文件中添加了这一行。

<?import javafx.scene.control.cell.PropertyValueFactory ?>
于 2015-11-16T18:53:13.733 回答
0

您必须在代码中为您的 TableView 和 fxid: 设置相同的名称。

<TableView fx:id="table" layoutX="27.0" layoutY="65.0" prefHeight="193.0" prefWidth="552.0">

TableView table;

你必须初始化表格列......并定义它们的属性。

尝试这个..

 @FXML
private TableColumn<CheckDo, String> username;
username.setCellValueFactory(new PropertyValueFactory<CheckDo,String>("username"));

您必须设置列的 setvaluefactory 以显示它的值

于 2013-11-12T12:31:17.340 回答