我在刷新JTable
时遇到问题。我从空ArrayList
开始,在设置了我选择的组合框之后,我将内容加载到ArrayList
,但JTable
没有对它作出反应 - 它仍为空。这是TableModel
的问题吗?
这是我的代码......
public class ProjectTableModel extends AbstractTableModel{
private static final long serialVersionUID = 1L;
private static ArrayList<String> caseList = new ArrayList<String>();
@Override
public int getColumnCount() {
return 1;
}
@Override
public int getRowCount() {
return caseList.size();
}
@Override
public Object getValueAt( int row , int col) {
getRowCount();
switch(col){
case 0:
System.out.println("mam to");
return caseList.get(row);
}
return null;
}
public void setCaseList(String[] list){
for (int i =list.length - 1; i >= 0; i--) {
caseList.add(list[i]);
}
System.out.println(getRowCount());
fireTableDataChanged();
}
public String setValueAt(int row, int col){
return null;
}
public void addTestCase(String name) throws IOException{
File newDir = new File(TestCaseMaker.currentDir,
"Przypadek testowy"+(caseList.size()+1));
newDir.createNewFile();
caseList.add(name);
fireTableDataChanged();
}
public String getColumnName(int col) {
return "Przypadki testowe";
}
}
答案 0 :(得分:2)
您setValueAt()
的实施不正确。它具有错误的签名,并且无法通知其视图。
附录:我的 JTable
对数据模型的任何更改都没有反应
作为参考,EnvTableTest
是使用AbstractTableModel
排除编辑的示例; isCellEditable()
的默认实现始终返回false
。
@Override
public void setValueAt(Object aValue, int row, int col) {
if (col == 1) {
System.out.println("setValueAt: " + row + " " + aValue);
// update caseList here
this.fireTableCellUpdated(row, col);
}
}
有一个相关的例子here。