gpt4 book ai didi

java - 添加更新、删除、插入按钮来运行 jtable 数据

转载 作者:行者123 更新时间:2023-12-01 15:30:19 24 4
gpt4 key购买 nike

我使用 netbeans 绑定(bind)用数据库数据填充了 jtable。我想添加删除、插入和更新按钮来对 jtable 和数据库中的数据更改进行操作...如何使用 gui 将按钮链接到操作?

最佳答案

您可以使用 ActionListener 以类似的方式实现 CRUD 操作按钮。插入行的示例如下:

JTable table = new JTable(model);
JButton button = new JButton();
button.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent arg0)
{
model.insertRow(0, new Object[]{"your data"});
// The above line manipulates data only in JTable.
// To reflect it on the database, add your SQL queries to this method.
}
})

关于java - 添加更新、删除、插入按钮来运行 jtable 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9601918/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com