我创建了一个显示项目列表的GUI类。当用户选择一个项目时,它会弹出一个显示JTable的新窗口,该窗口应该提供该项目的详细信息(两列:左边的参数,右边的值)。这种(有点)工作,直到我决定使表类中的所有方法和变量都是非静态的,以防用户想要在同一时间打开几个表窗口。
然后它停止了工作。该表不会显示。所有代码都会执行,但即使在我使用其模型的add方法之后,该表也是空的。
(另外,我很欣赏有关GUI的更好主意的评论,主要是因为其中一个字段被称为“描述”并且可能很长。我正在为自己编写应用程序,因此函数是第一优先级)
编辑:这里有一些代码,请不要犹豫,向我询问更多。 (我没有在第一时间复制它,因为我认为它很简单)
JTable类,从第82行开始 - 所有其余的都是自动生成的。
public void main(ArrayList<String> l, ArrayList<String> d) {
labels = l;
data = d;
/*
* Set the Nimbus look and feel
*/
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
/*
* If Nimbus (introduced in Java SE 6) is not available, stay with the
* default look and feel. For details see
* http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
*/
try {
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLogger(PopupTable.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(PopupTable.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(PopupTable.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(PopupTable.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
//</editor-fold>
/*
* Create and display the form
*/
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new PopupTable().setVisible(true);
model.addColumn("Description");
model.addColumn("Value");
for (int i = 0; i < data.size(); i++) {
Object[] r = {labels.get(i), data.get(i)};
System.out.println(labels.get(i) + data.get(i));
model.addRow(r);
}
Object[] asd = {"Name", "Skelet"};
model.addRow(asd);
}
});
}
public static void asd() {
System.out.println("Bazinga!");
}
private ArrayList<String> labels;
private ArrayList<String> data;
private DefaultTableModel model = new DefaultTableModel();
;
// Variables declaration - do not modify
private javax.swing.JButton jButton1;
private javax.swing.JButton jButton2;
private javax.swing.JButton jButton3;
private javax.swing.JScrollPane jScrollPane1;
private javax.swing.JTable table;
// End of variables declaration
}
另一个类通过发送两个列表来调用这个“主”方法,一个用于字段数据,另一个用于描述每个数据(第一个发送“2000”,第二个发送“体验”)。正如我所说,如果变量和方法是静态的,一切都有效。如果它们不是,那么一切都有效,除了没有出现的桌子。
这是来自外部类的代码,我用它来创建Table类:
new PopupTable().main(list1, list2);
答案 0 :(得分:2)
我刚注意到run()方法有:
new PopupTable().setVisible(true);
所以我删除了它然后像这样运行类:
PopupTable pt = new PopupTable();
pt.main(MagiciaFileManipulator.getMetadata(), itemList.get(0));
pt.setVisible(true);
现在一切都很完美!我不敢相信这么简单,我以为我看了一切,错误地认为它是JTables和静态/非静态的基本问题。