我正在javafx的表视图中添加数据。我还在设置表列,如图所示,它们工作正常。关于我错在哪里的任何评论?
c1 = new TableColumn<String, String>("First Name"); //c1 is column
c1.setCellValueFactory(new PropertyValueFactory<String,String>("Name"));
table.setItems(value); //table is tableview
table.getItems().add("My name");
table.getColumns().addAll(c1);
count++;