事情就是这样。我的框架中有一个JTable
显示一些可以编辑的数据。可以添加新行,可以删除旧行。
现在,如果我从一个填充了一些数据的表开始,它可以正常工作。我可以删除行,这也会从我的数据中删除行Vector<Vector>
。但是,当我添加一行时,该行显示在我的表中,但更改并未反映在数据中。
Vector<Object> newQuestion = new Vector<Object>(3, 1);
newQuestion.add(question.getText());
newQuestion.add(answer.getText());
newQuestion.add(false);
model.addRow(newQuestion); // Update the model with new question
model
是一个DefaultTableModel
。model.fireTableDataChanged();
即使 DTM 自行触发,我也尝试过,但这也不起作用。
任何指针?
编辑:有趣的是,如果我从表中的一些数据开始,然后添加一行,则更改也会反映在数据中。
编辑 2:https ://github.com/thekarangoel/YALT/blob/master/src/editDB.java从第 65 行开始添加一行!要尝试、编译、运行,文件 > 添加新数据库。给个名字。添加新行。
编辑 3:对于此代码: System.out.println("Data:" + data); 矢量> 模型数据 = 模型.getDataVector(); System.out.println("数据:" + modelData);
我明白了:
Data: null
Data: [[w, a, false]]
第一个 if 数据来自我的 Vector。第二个是`model的Vector中的数据。为什么会这样?当我向现有表添加内容时,文件行也会显示更改。