编辑后的JavaFX,TableView,动态更新项

时间:2015-09-16 16:26:04

标签: java dynamic javafx properties tableview

我试图修改TableView的JavaFX示例代码 使用动态方法编辑后更新项目。 整个教程和示例代码可以在这里找到:
https://docs.oracle.com/javafx/2/ui_controls/table-view.htm

Item的更新被编程为handler:

firstNameCol.setOnEditCommit(
new EventHandler<CellEditEvent<Person, String>>() {
    @Override
    public void handle(CellEditEvent<Person, String> t) {
        ((Person) t.getTableView().getItems().get(
            t.getTablePosition().getRow())
            ).setFirstName(t.getNewValue()); 
    }
} );

我想使用动态而不是setFirstName() 除了反思之外还有其他可能吗?

我已经通过以下方式获得了Property的名称:

String propertyName = ((PropertyValueFactory)t.getTableColumn().getCellValueFactory()).getProperty();

我可以用某种方式使用propertyName设置firstName的值吗? 我知道,它可以通过反射完成,但我想使用属性的功能。

谢谢你, 安妮

2 个答案:

答案 0 :(得分:3)

你可以做到

TableColumn<Person, String> col = t.getTableColumn();
int row = t.getTablePosition().getRow();
ObservableValue<String> ov = col.getCellObservableValue(row);
if (ov instanceof WritableValue) {
    ((WritableValue<String>)ov).setValue(t.getNewValue());
}

如果需要,您应该能够使用类型变量替换特定类型PersonString

请注意,这与TableColumn上定义的默认编辑提交处理程序基本相同。

作为替代方案,您可以考虑定义一个创建TableColumn的实用程序方法,给定标题和属性工厂。我经常使用这样的便捷方法(略微适应包括你的用例):

private static <S,T> TableColumn<S,T> createColumn(String title, Function<S, Property<T>> property) {
    TableColumn<S,T> col = new TableColumn<>(title);
    col.setCellValueFactory(cellData -> property.apply(cellData.getValue()));
    col.setOnEditCommit(edit -> {
        S rowValue = edit.getRowValue();
        property.apply(rowValue).setValue(edit.getNewValue());
    });
    return col ;
}

然后你可以做像

这样的事情
TableView<Person> table = new TableView<>();
TableColumn<Person, String> firstNameColumn = createColumn("First Name", Person::firstNameProperty);

并且表格列已设置onEditCommit

我更喜欢这种通用样式到PropertyValueFactory,它不是类型安全的,并且由于名称中的拼写错误而容易出错。等等。自Java 8发布以来,它应该被认为是遗留代码,它允许如上所述设置单元格值工厂的惯用方法要多得多。

答案 1 :(得分:-1)

说我的对象是用场景构建器构建的。但它将函数代码定义beans类中的fields属性,这样就可以使用它们。

//@FXML 
@FXML
Label nom;
@FXML
Label prenom;
 @FXML
 private TableColumn<UtilisateurToDisplay, String> firstNameColumn;
@FXML
private TableColumn<UtilisateurToDisplay, String> lastNameColumn;
@FXML
private TableView<UtilisateurToDisplay> UserTable;
private final ObservableList<UtilisateurToDisplay> data_usr = FXCollections.observableArrayList();

public void initialize(URL location, ResourceBundle resources) {
// Initialize table with the two columns.
    firstNameColumn.setCellValueFactory(cellData -> cellData.getValue().firstNameProperty());
    lastNameColumn.setCellValueFactory(cellData -> cellData.getValue().lastNameProperty());


    // Listen for selection changes and show the person details when changed.
    UserTable.getSelectionModel().selectedItemProperty().addListener(
            (observable, oldValue, newValue) -> showUserDetails(newValue));
}
private void showUserDetails(UtilisateurToDisplay person) {
    if (person != null) {
        // Fill the labels with info from the person object.
        nom.setText(person.getNom_usr());
        prenom.setText(person.getPrenom_usr());

    } else {
        // Person is null, remove all the text.
        nom.setText("");
        prenom.setText("");

    }
}
}

您可以查看此地址的详细信息: http://code.makery.ch/library/javafx-8-tutorial/part3/