我需要你的帮助。 我正在开发处理表视图和表单的JavaFX项目。 我的问题是我无法在表格视图中获取所选行的文本。 我想使用行索引或选定的第一行来获取行单元格的文本。
这是我的代码:
myTableView.getSelectionModel().selectedItemProperty().addListener( new ChangeListener() {
@Override
public void changed(ObservableValue ov, Object t, Object t1) {
TableView.TableViewSelectionModel selectionModel = myTableView.getSelectionModel();
ObservableList selectedCells = selectionModel.getSelectedCells();
TablePosition tablePosition = (TablePosition) selectedCells.get(0);
int rowIndex = tablePosition.getRow(); // yields the row that the currently selected cell is in
// I Want to get the cell's text in the row using the row_index or the selected row one
}
});
任何解决方案都表示赞赏。谢谢!
答案 0 :(得分:4)
如果您只关心选择哪一行,假设您有TableView<SomeObject>
,则可以使用:
List<SomeObject> selected = selectionModel.getSelectedItems();
或者如果您的表只允许单行选择:
SomeObject selected = selectionModel.getSelectedItem();