Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
正是问题所述。我创建了一个自定义tableModel类,我想JTable在actionPerformed.
tableModel
JTable
actionPerformed
您必须从用于该表的 TableModel 中删除数据。
如果使用 DefaultTableModel,只需将行数设置为零。这将删除行并触发 TableModelEvent 以更新 GUI。
JTable table; … DefaultTableModel model = (DefaultTableModel) table.getModel(); model.setRowCount(0);
如果使用其他 TableModel,请查看文档。