1

我有一个带有 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();
  }
}
4

1 回答 1

3
于 2013-04-10T08:08:16.417 回答