当前位置: 首页 > 知识库问答 >
问题:

如何直接在javafx TableView中创建新记录?

陶健
2023-03-14

我正在使用JDBC和MySQL。

我可以创建文本字段并将其内容作为记录输入到MySQL表中(然后填充相应的javafx TableView)。

我想知道用户是否可以通过点击TableView单元格直接向TableView添加新记录。

这样做会是一个好的做法吗?TableView显示销售发票的详细信息,如项目名称、销售数量、价格等。

共有1个答案

巴学潞
2023-03-14

前阵子发了这个例子,现在找不到了

这样做的一种方法是在表的项目列表末尾放置一个“空白”项目。注册一个侦听器,以便在用户编辑该值时,在末尾添加一个新的空白项。

这里有一个例子(它也有一些与默认不同的编辑功能)。

import java.util.function.Function;

import javafx.application.Application;
import javafx.beans.binding.Bindings;
import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.StringProperty;
import javafx.beans.value.ChangeListener;
import javafx.beans.value.ObservableValue;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.TableCell;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TableView;
import javafx.scene.control.cell.TextFieldTableCell;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
import javafx.util.Callback;

public class TableViewSingleClickEditTest extends Application {


    @Override
    public void start(Stage primaryStage) {


        TableView<Person> table = new TableView<>();
        table.setEditable(true);

        TableColumn<Person, String> firstNameCol = createCol("First Name", Person::firstNameProperty, 150);
        TableColumn<Person, String> lastNameCol = createCol("Last Name", Person::lastNameProperty, 150);
        TableColumn<Person, String> emailCol = createCol("Email", Person::emailProperty, 200);

        TableColumn<Person, Void> indexCol = new TableColumn<>("");
        indexCol.setCellFactory(col -> {
            TableCell<Person, Void> cell = new TableCell<>();
            cell.textProperty().bind(Bindings.createStringBinding(() -> {
                if (cell.getIndex() >= 0 && cell.getIndex() < table.getItems().size() - 1) {
                    return Integer.toString(cell.getIndex() + 1);
                } else if (cell.getIndex() == table.getItems().size() - 1) {
                    return "*" ;
                } else return "" ;
            }, cell.indexProperty(), table.getItems()));
            return cell ;
        });
        indexCol.setPrefWidth(32);

        table.getItems().addAll(
            new Person("Jacob", "Smith", "jacob.smith@example.com"),
            new Person("Isabella", "Johnson", "isabella.johnson@example.com"),
            new Person("Ethan", "Williams", "ethan.williams@example.com"),
            new Person("Emma", "Jones", "emma.jones@example.com"),
            new Person("Michael", "Brown", "michael.brown@example.com")
        );

        ChangeListener<String> lastPersonTextListener = new ChangeListener<String>() {
            @Override
            public void changed(ObservableValue<? extends String> obs, String oldText, String newText) {
                if (oldText.isEmpty() && ! newText.isEmpty()) {
                    Person lastPerson = table.getItems().get(table.getItems().size() - 1);
                    lastPerson.firstNameProperty().removeListener(this);
                    lastPerson.lastNameProperty().removeListener(this);
                    lastPerson.emailProperty().removeListener(this);
                    Person newBlankPerson = new Person("", "", "");
                    newBlankPerson.firstNameProperty().addListener(this);
                    newBlankPerson.lastNameProperty().addListener(this);
                    newBlankPerson.emailProperty().addListener(this);
                    table.getItems().add(newBlankPerson);
                }
            }
        };

        Person blankPerson = new Person("", "", "");
        blankPerson.firstNameProperty().addListener(lastPersonTextListener);
        blankPerson.lastNameProperty().addListener(lastPersonTextListener);
        blankPerson.emailProperty().addListener(lastPersonTextListener);
        table.getItems().add(blankPerson);

        table.getColumns().add(indexCol);
        table.getColumns().add(firstNameCol);
        table.getColumns().add(lastNameCol);
        table.getColumns().add(emailCol);

        VBox root = new VBox(15, table);
        root.setAlignment(Pos.CENTER);
        Scene scene = new Scene(root, 800, 600);

        primaryStage.setScene(scene);
        primaryStage.show();
    }


    private TableColumn<Person, String> createCol(String title, 
            Function<Person, ObservableValue<String>> mapper, double size) {

        TableColumn<Person, String> col = new TableColumn<>(title);

        col.setCellValueFactory(cellData -> mapper.apply(cellData.getValue()));

        Callback<TableColumn<Person, String>, TableCell<Person, String>> defaultCellFactory
            = TextFieldTableCell.forTableColumn();

        col.setCellFactory(column -> {
            TableCell<Person, String> cell = defaultCellFactory.call(column);
            cell.setOnMouseClicked(e -> {
                if (! cell.isEditing() && ! cell.isEmpty()) {
                    cell.getTableView().edit(cell.getIndex(),  column);
                }
            });
            return cell ;
        });

        col.setPrefWidth(size);


        return col ;
    }

    public class Person {
        private final StringProperty firstName = new SimpleStringProperty(this, "firstName");
        private final StringProperty lastName = new SimpleStringProperty(this, "lastName");
        private final StringProperty email = new SimpleStringProperty(this, "email");

        public Person(String firstName, String lastName, String email) {
            this.firstName.set(firstName);
            this.lastName.set(lastName);
            this.email.set(email);
        }

        public final StringProperty firstNameProperty() {
            return this.firstName;
        }

        public final java.lang.String getFirstName() {
            return this.firstNameProperty().get();
        }

        public final void setFirstName(final java.lang.String firstName) {
            this.firstNameProperty().set(firstName);
        }

        public final StringProperty lastNameProperty() {
            return this.lastName;
        }

        public final java.lang.String getLastName() {
            return this.lastNameProperty().get();
        }

        public final void setLastName(final java.lang.String lastName) {
            this.lastNameProperty().set(lastName);
        }

        public final StringProperty emailProperty() {
            return this.email;
        }

        public final java.lang.String getEmail() {
            return this.emailProperty().get();
        }

        public final void setEmail(final java.lang.String email) {
            this.emailProperty().set(email);
        }

    }

    public static void main(String[] args) {
        launch(args);
    }
}
 类似资料:
  • 问题内容: 我有一个数据块,当前为n元组列表,但格式相当灵活,我想附加到Postgres表中-在这种情况下,每个n元组都对应于数据库中的一行。 到目前为止,我一直在做的工作是将所有内容都写入CSV文件,然后使用postgres的COPY将所有内容批量加载到数据库中。这可行,但不是最佳选择,我希望能够直接从python进行所有操作。python中是否有一种方法可以在Postgres中复制COPY类型

  • 001/电视购买/约翰·史密斯/真 002/冰箱购买/让·史密斯/假

  • 问题内容: 我正在打印星空金字塔,我无法打印新行。 问题答案: 使用换行符。 您还可以拥有多个: 但是,如果将其呈现为HTML,则需要将HTML标签用于换行符: 源代码中的字符串如下所示: 该字符串在HTML源代码中将如下所示: HTML页面将以换行符的形式呈现给查看该页面的用户,只是将文本拖放到源代码的下一行(如果在HTML页面上)。

  • 我试图在JSPlumb中创建两个endpoint之间的直线连接。当我尝试连接到endpoint时,将拖动源点,而不是创建直线连接。 这里是小提琴:http://jsfiddle.net/dutchman71/aMksZ/2/ 谢谢你的帮助。

  • 我正在尝试将标记对象用于我的flatter插件。使用MethodChannel,我可以调用Java函数,但我的标记对象仍然为null。我如何正确地创建此意图? 我的猜测是不能以这种方式创建意图,这就是为什么它为标记返回空对象的原因。