如何清除JTable中的数据?
我正在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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.
您的问题的最佳解决方案是
The best solution for your question is