所以我一直在尝试实现一个TableView,只需单击它就可以编辑一个列,然后按回车键保存编辑。我从this线程中的答案中获取了很多代码。这是结果:
import com.sun.javafx.collections.ObservableListWrapper;
import javafx.application.Application;
import javafx.application.Platform;
import javafx.beans.property.SimpleStringProperty;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.scene.Scene;
import javafx.scene.control.TableCell;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TableView;
import javafx.scene.control.TextField;
import javafx.scene.input.KeyCode;
import javafx.stage.Stage;
public class TestEditableTable extends Application {
public void start(Stage stage) {
TableView<ObservableList<String>> tableView = new TableView<ObservableList<String>>();
tableView.setEditable(true);
// Some dummy data.
ObservableList<ObservableList<String>> dummyData = FXCollections.observableArrayList();
ObservableList<String> firstRow = FXCollections.observableArrayList("Jack", "Smith");
dummyData.add(firstRow);
ObservableList<String> secondRow = FXCollections.observableArrayList("Peter", "Smith");
dummyData.add(secondRow);
TableColumn<ObservableList<String>, String> firstCol = new TableColumn<ObservableList<String>, String>(
"First name");
firstCol.setCellValueFactory(
(TableColumn.CellDataFeatures<ObservableList<String>, String> param) -> new SimpleStringProperty(
param.getValue().get(0)));
TableColumn<ObservableList<String>, String> secondCol = new TableColumn<ObservableList<String>, String>(
"Last name");
secondCol.setCellValueFactory(
(TableColumn.CellDataFeatures<ObservableList<String>, String> param) -> new SimpleStringProperty(
param.getValue().get(1)));
secondCol.setCellFactory(cell -> new EditableCell());
tableView.getColumns().addAll(firstCol, secondCol);
tableView.getItems().addAll(dummyData);
Scene scene = new Scene(tableView);
stage.setScene(scene);
stage.show();
}
public static void main(String[] args) {
launch();
}
class EditableCell extends TableCell<ObservableList<String>, String> {
private TextField textfield = new TextField();
// When the user presses the enter button the edit is saved.
public EditableCell() {
setOnKeyPressed(e -> {
if (e.getCode().equals(KeyCode.ENTER)) {
commitEdit(textfield.getText());
}
});
}
@Override
public void updateItem(String item, boolean empty) {
super.updateItem(item, empty);
if (isEmpty()) {
setText(null);
setGraphic(null);
} else {
if (isEditing()) {
textfield.setText(item);
setGraphic(textfield);
setText(null);
} else {
setText(item);
setGraphic(null);
}
}
}
@Override
public void startEdit() {
super.startEdit();
textfield.setText(getItem());
setGraphic(textfield);
setText(null);
}
@Override
public void cancelEdit() {
super.cancelEdit();
setGraphic(null);
setText(getItem());
}
@Override
public void commitEdit(String value) {
super.commitEdit(value);
// This works. But gives me a "Discouraged access: The type 'ObservableListWrapper<String>' is not API (restriction on required library 'C:\Program Files\Java\jre1.8.0_60\lib\ext\jfxrt.jar')".
ObservableListWrapper<String> ob = ((ObservableListWrapper<String>) this.getTableRow().getItem());
ob.set(1, value);
// I had to put this in a Platform.runLater(), otherwise the textfield remained open.
Platform.runLater(() -> {
setText(value);
setGraphic(null);
});
}
}
}
这个程序运行正常。按enter按钮编辑单元格。但是这有两个主要问题:
我按下回车键并编辑了一个单元格。我点击它无法再次编辑它。我需要按另一行才能再次编辑它。设置为专注于行的父级并没有成功。
commitEdit()
内的代码有效。但它很难看并使用ObservableListWrapper
给我警告“不鼓励访问:类型'ObservableListWrapper'不是API(对所需库的限制'C:\ Program Files \ Java \ jre1.8.0_60 \ lib \ ext \ jfxrt.jar')”。此外,单元格索引是硬编码的,如果我在许多不同的列中使用它,它将无法工作。
上述任何问题都不可接受。
最终实现必须支持限制文本字段中的输入。据我所知,这意味着我需要访问单元格中显示的TextField
对象,就像我当前的实现一样。
答案 0 :(得分:1)
您正在将事件处理程序注册为单元格上的关键事件处理程序。在文本字段上注册处理程序更有意义,因为这是实际发生感兴趣事件的控件。还要注意按下回车时TextField
的火灾动作事件。
所以替换
public EditableCell() {
setOnKeyPressed(e -> {
if (e.getCode().equals(KeyCode.ENTER)) {
commitEdit(textfield.getText());
}
});
}
带
public EditableCell() {
textfield.setOnAction(e -> commitEdit(textfield.getText()));
}
这将确保正确维护编辑状态(事件处理程序不会发生这种情况,原因我无法理解),因此它修复了&#34;重新编辑&#的问题34 ;.这也意味着您不必手动重置commitEdit
中的文字和图片。
对于第二个问题,您可以向下转换为ObservableList<String>
而不是ObservableListWrapper<String>
。但请注意,您也可以这样做
@Override
public void commitEdit(String value) {
super.commitEdit(value);
ObservableList<String> row = getTableView().getItems().get(getIndex());
row.set(1, value);
}
它不仅避免了私有API,而且完全避免了向下转发。
答案 1 :(得分:0)
另一种方法是在Buildpath中用JDK Library替换JRE库 项目 - &gt;构建路径 - &gt;配置构建路径 -1删除JRE库
-2添加库 -2.1 - &gt;选择与JDK环境关联的Java Library
所有错误都将消失