我想在运行时更改JTable中的默认数据。我正在使用netbeans。我尝试了此处给出的解决方案adding data to JTable when working with netbeans

jTable1.getModel()。setValueAt(row,column,value);

但这给了我这个错误:

最佳答案

如果要在运行时进行更改,则需要确定何时进行更改,并将代码添加到适当的方法/事件中。就目前而言,您在类定义中有一个方法调用,这不是有效的代码。

例如

public void setTableModel(){
    displayTable.getModel().setValueAt(2,4,300);
}


然后在适当的时间调用setTableModel()。

10-01 03:29