0

我在删除要删除的特定列下的实际数据时遇到困难。我实际上想删除该列及其基础数据。我可以插入新列,但是当我删除并再次插入时,我之前删除的旧列会再次弹出。

任何形式的帮助表示赞赏。

预先感谢您。

4

2 回答 2

2

数据存储在TableModel.

从 中删除列ColumnModel只会阻止视图(JTable)显示它。

为了删除它,您还需要告诉TableModel删除列数据。

根据您的实施,您可以使用JTable.setValueAt(value, row, column)or TableModel.setValueAt(value, row, column),哪个更方便。

这当然假设您已经实现了该setValueAt方法

于 2012-09-06T18:41:04.227 回答
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;
     }
  }
于 2012-09-09T19:19:41.323 回答