我有一个使用 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:
这表明它可以识别所有五行,但由于某些原因在从行中读取时会出现混乱。
我已经盯着同一行代码看了一个小时了,老实说,我看不出哪里出了问题。
在此先感谢,迈克。