我在删除要删除的特定列下的实际数据时遇到困难。我实际上想删除该列及其基础数据。我可以插入新列,但是当我删除并再次插入时,我之前删除的旧列会再次弹出。
任何形式的帮助表示赞赏。
预先感谢您。
数据存储在TableModel
.
从 中删除列ColumnModel
只会阻止视图(JTable
)显示它。
为了删除它,您还需要告诉TableModel
删除列数据。
根据您的实施,您可以使用JTable.setValueAt(value, row, column)
or TableModel.setValueAt(value, row, column)
,哪个更方便。
这当然假设您已经实现了该setValueAt
方法
public void removeColumnAndData(JTable table, int vColIndex) { MyTableModel model = (MyTableModel)table.getModel();
TableColumn col =table.getColumnModel().getColumn(vColIndex);
int columnModelIndex = col.getModelIndex();
Vector data = model.getDataVector();
Vector colIds = model.getColumnIdentifiers();
// Remove the column from the table
table.removeColumn(col);
// Remove the column header from the table model
colIds.removeElementAt(columnModelIndex);
// Remove the column data
for (int r=0; r<data.size(); r++) {
Vector row = (Vector)data.get(r);
row.removeElementAt(columnModelIndex);
}
model.setDataVector(data, colIds);
// Correct the model indices in the TableColumn objects
// by decrementing those indices that follow the deleted column
Enumeration<TableColumn> enum1 = table.getColumnModel().getColumns();
for (; enum1.hasMoreElements(); ) {
TableColumn c = (TableColumn)enum1.nextElement();
if (c.getModelIndex() >= columnModelIndex) {
c.setModelIndex(c.getModelIndex()-1);
}
}
model.fireTableStructureChanged();
}
/ * MyDefaultTableModel 类** /
class MyTableModel extends DefaultTableModel
{
String columns[];
int size;
public MyTableModel(String col[],int size)
{
super(col,size);
columns = col;
this.size=size;
}
public Vector getColumnIdentifiers()
{
return columnIdentifiers;
}
}