我需要你的帮助。我正在开发处理表格视图和表单的 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
}
});
任何解决方案表示赞赏。谢谢!