从自定义AbstractTableModel向JTable添加/删除更多列

时间:2013-04-10 08:00:07

标签: java swing jtable tablemodel abstracttablemodel

我有一个带有HashMap元素的向量。 我想把它放在一个表中,每个HashTable值必须在HashTable键列标题的列中。 因此,具有键“key1”的元素必须出现在名为“key1”的表列上。

当我尝试使用setHash()函数添加/删除表的列时,

问题。 我传递一个包含更多/更少元素的String [],当这个函数运行时,fireTableStructureChanged() java会像疯了一样抛出。

我不明白问题出在哪里。你能帮帮我吗?

表模型的实现在这里:

public class ResizableTableModel extends AbstractTableModel {
  protected DataSource src;
  protected String[] hash;

  //......................

  public void setHash(String[] hash) {
        this.hash = hash;
        fireTableStructureChanged();  // THROWS!
  }

  public ArrayList getData() { return src.getData(); }
  public int getColumnCount() { return hash.length; }
  public int getRowCount() { return getData() == null ? 0 : getData().size(); }
  public String getColumnName(int col) { return hash[col]; }
  public boolean isCellEditable(int row, int col) { return true; }
  public Object getValueAt(int row, int col) {
    try {
      return ((HashMap) getData().get(row)).get(hash[col]);
    } catch (Exception e) {
      return null;
    }
  }
  public void setValueAt(Object obj, int row, int col) {
    try {
      //...................
    } catch (Exception e) {}
    fireTableDataChanged();
  }
}

1 个答案:

答案 0 :(得分:3)