我有一个使用DefaultTableModel的JTable GUI。
声明了这些实例变量:
boolean doRun = false;
Class clazz;
Object obyect;
DefaultTableModel model;
ArrayList<String> al = new ArrayList();
该表填充如下:
public StatusGUI(Object invokerObject) {
initComponents();
setLocationRelativeTo(null);
clazz = invokerObject.getClass();
obyect = invokerObject;
String line;
try {
Field[] fields = clazz.getDeclaredFields();
for (int i = 0; i < fields.length; i++) {
if (!fields[i].isAccessible()) {
fields[i].setAccessible(true);
}
if (("" + fields[i].getType()).equals("class java.lang.String")) {
line = "String";
} else {
line = "" + fields[i].getType();
}
//Note: The first string in the Object is the description, which is left empty
model.insertRow(0, new Object[]{"", fields[i].getName(), line, "" + fields[i]});
}
} catch (Exception ex) {
ex.printStackTrace();
}
setVisible(true);
}
这会生成(在这种情况下)5行,其中包含有关变量的信息。
我希望按下按钮并使用以下代码接收和存储这些变量的信息:
private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {
for (int i = 0; i < model.getRowCount(); i++) {
String description = "" + model.getValueAt(i, 0);
System.out.println("Description " + i + ": " + description);
String name = "" + model.getValueAt(i, 3);
if (!description.equals("") && description != null) {
al.add(description + "::" + name);
}
}
if (al.isEmpty()) {
JOptionPane.showMessageDialog(this, "No descriptions were added to any of the variables."
+ "\nThis could also be because no variables were found - if so, please see 'Help'");
} else {
new Thread(new SendThread(al, obyect)).start();
this.dispose();
}
}
将描述添加到所有五行时,上面的代码会生成以下输出:
Description 0: d1
Description 1: d2
Description 2: d3
Description 3: d4
Description 4:
当仅在JTable的第一行添加描述时,上面的代码生成:
Description 0:
Description 1:
Description 2:
Description 3:
Description 4:
这表明它识别了所有五行,但由于某些原因,从行读取时会出现混乱。
我现在一直盯着相同的代码行一小时,老实说,看不出有什么问题。
提前致谢, 麦克
答案 0 :(得分:3)
我的水晶球说你的桌子还在编辑(第一个例子中的第5行,第二个中的第0行)。在执行的操作中首先提交编辑。
if (table.isEditing()) {
table.getCellEditor().stopCellEditing();
}
答案 1 :(得分:3)
但是,为什么我似乎不能在构造函数中执行此操作?
您可以在表格上设置属性来为您执行此操作。请参阅Table Stop Editing。