JTable 中的列不更新
我将 JTable 与 AbstractTableModel 一起使用:
_model = new AbstractTableModel() {
@Override
public int getColumnCount() {
return _columns.size();
}
@Override
public int getRowCount() {
return _data.size();
}
@Override
public Object getValueAt(int row, int col) {
return _data.get(row)[col];
}
@Override
public String getColumnName(int i) {
return _columns.get(i);
}
};
当行和列更改时,调用 table.revalidate() 仅显示对行的更改。列与以前完全相同。有没有办法强制更新整个表?
I'm using a JTable with AbstractTableModel:
_model = new AbstractTableModel() {
@Override
public int getColumnCount() {
return _columns.size();
}
@Override
public int getRowCount() {
return _data.size();
}
@Override
public Object getValueAt(int row, int col) {
return _data.get(row)[col];
}
@Override
public String getColumnName(int i) {
return _columns.get(i);
}
};
When rows and columns change, calling table.revalidate() only shows changes to rows. Columns are exactly the same as before. Is there a way to force update for the whole table?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果更改列,您应该在模型上调用
fireTableStructureChanged
。If you change columns you should call
fireTableStructureChanged
on the model.不应该是这样吗
shouldn't it be