我在删除我要删除的特定列下的实际数据时遇到了困难。 我实际上想要删除列及其基础数据。我可以插入新列,但删除时 并再次插入,我之前删除的旧列再次弹出。
感谢任何帮助。
先谢谢你。
答案 0 :(得分:2)
数据存储在TableModel
。
从ColumnModel
删除列只会阻止视图(JTable
)显示。
要删除它,您需要告诉TableModel
删除列数据。
根据您的实施情况,您可以使用JTable.setValueAt(value, row, column)
或TableModel.setValueAt(value, row, column)
,这样更方便。
这当然假设您已实施setValueAt
方法
答案 1 :(得分:0)
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;
}
}