好的,我已经阅读了这个,但我仍然很困惑。我有一个带有自定义表模型的 JTable,它将数据存储在 ArrayList 中。它显示得很好。但是,当我想添加一行时,我将一个对象添加到 ArrayList,然后调用 fireTableRowsInserted(...)。但是,该表不会刷新。
public Main() {
initComponents();
current_map = new Map();
current_map.authors.add(new Author("New Author"));
author_model = new AuthorModel(current_map.authors);
jTable1.setModel(new AuthorModel(current_map.authors)); <---This is the mistake
}
...
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
author_model.authors.add(new Author("New Author"));
author_model.fireTableRowsInserted(author_model.authors.size(), author_model.authors.size());
}
上面的代码来自我的主 JFrame。不知道从这里去哪里。
我现在迷路了。