如何清除JTable中的数据?

发布于 2025-01-01 21:40:55 字数 175 浏览 2 评论 0原文

我正在 Netbeans 编程,框架中有一个 jTable。

我在其中加载占用大量行的数据,但随后加载另一个行数少得多的表。

当我运行它并加载第二个表时,第一个表的额外行仍然出现在那里。我只想看看第二张桌子。

我已经尝试过 jTable.removeAll();

I am programming at Netbeans, and I have a jTable in a frame.

In which I load data that occupies a lot of rows, but then i load another table that has a lot less rows.

And when i am running it, and loading the 2nd table, the extra rows that the first table had are still appearing there. And i wish to just see the 2nd table.

I already tried for jTable.removeAll();

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

狠疯拽 2025-01-08 21:40:55

JTable 使用 Model/View/Controller 方法,这意味着 JTable 类既是 View 又是 Controller,因此您需要使用 JTable.setModel(newModel) 替换 TableModel 或使用 JTable.getModel() 清除 TableModel并以这种方式清除模型。

请参阅 JTable 教程 中有关使用表的教程。

JTable uses the Model/View/Controller methodology, which means that the JTable class is both the View and Controller, so you need to either replace the TableModel by using JTable.setModel(newModel) or clear the TableModel by using JTable.getModel() and clearing the model that way.

See the tutorial on using tables in the JTable Tutorials.

星星的轨迹 2025-01-08 21:40:55

您的问题的最佳解决方案是

private void ClearButtonActionPerformed(java.awt.event.ActionEvent evt) {
    DefaultTableModel model = (DefaultTableModel)UR_TABLEVARIABLENAME.getModel();

    while (model.getRowCount() > 0){
        for (int i = 0; i < model.getRowCount(); ++i){
            model.removeRow(i);
        }
    }
}    

The best solution for your question is

private void ClearButtonActionPerformed(java.awt.event.ActionEvent evt) {
    DefaultTableModel model = (DefaultTableModel)UR_TABLEVARIABLENAME.getModel();

    while (model.getRowCount() > 0){
        for (int i = 0; i < model.getRowCount(); ++i){
            model.removeRow(i);
        }
    }
}    
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文