gpt4 book ai didi

java - 设置外观时序列化 AbstractTableModel 失败

转载 作者:行者123 更新时间:2023-12-02 02:40:32 29 4
gpt4 key购买 nike

在设置特定外观后序列化扩展 AbstractTableModel 的类会导致 java.io.NotSerializedException: com.sun.java.swing.plaf.windows.XPStyle $Skin 异常,后跟不同的 NullPointerException

我找到了一个解决方案,并正在回答我自己的问题,以帮助其他人节省时间,并从一开始就正确实现序列化。附件是一个在我的计算机(Win 10、Netbeans IDE 8.2、Java JDK 1.8)上重现错误的最小示例。下面的答案是主要代码段以及更多详细信息。

最佳答案

主类扩展JFrame ,设置外观并显示 JTable 。它有一个成员变量Tip tip ,其中Tip延伸AbstractTableModel (见下文)。

public class MainFrame extends javax.swing.JFrame {

// a single tip
// in my final app, there was a list of tips
Tip tip = new Tip();

public MainFrame() {
initComponents();

// fill new instance with some dummy data for answers
tip.addAnswer("first answer", 1, "first reply");
tip.addAnswer("second answer", 2, "second reply");

// assign the table model
jTable.setModel(tip);
}

// ... more code (see attachment)

public static void main(String args[]) {

/* Set the look and feel */
try {
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Windows".equals(info.getName())) {
/**
* when setting LaF to 'Nimbus' de-/serialization fails on the first save/load:
* Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
* at javax.swing.plaf.synth.SynthLookAndFeel.paintRegion(SynthLookAndFeel.java:371)
*
* when setting LaF to 'Windows' the second save/load fails with:
* java.io.NotSerializableException: com.sun.java.swing.plaf.windows.XPStyle$Skin
* at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1184)
*
* when setting LaF to 'Metal' save/load works just fine
*
* not setting LaF at all (uncomment the line below) also works fine
*/
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (Exception ex) {
Logger.getLogger(MainFrame.class.getName()).log(Level.SEVERE, null, ex);
}


/* Create and display the form */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new MainFrame().setVisible(true);
}
});
}

类(class)Tip包含一些应显示在表中的成员变量(自定义类型 TipAnswer ),以及业务逻辑所需但未显示在表中的其他成员变量:

public class Tip extends AbstractTableModel {

// ... more member variables that don't show up in the table

// a list of answers to the tip which show up in the table
private ArrayList<TipAnswer> answers = new ArrayList<>();

// adds an answer to the tip
public void addAnswer(String answer, int cost, String reply) {
answers.add(new TipAnswer(answer, cost, reply));
}

// ... more methods that override the methods
// required by AbstractTableModel (see attachment)
}

主类对按下按钮使用react,成员变量tip被序列化并立即再次反序列化。反序列化的结果如表所示。

private void jSaveAndLoadActionPerformed(java.awt.event.ActionEvent evt) {

// make temp file
Path path;
try {
path = Files.createTempFile("TestTableModel", ".txt");
} catch (IOException ex) {
Logger.getLogger(MainFrame.class.getName()).log(Level.SEVERE, null, ex);
return;
}

// write to file (serialize)
try ( FileChannel channel = FileChannel.open(path, StandardOpenOption.CREATE,
StandardOpenOption.WRITE,
StandardOpenOption.TRUNCATE_EXISTING);
ObjectOutputStream oos = new ObjectOutputStream(Channels.newOutputStream(channel))
) {

// write object to file
oos.writeObject(tip);
System.out.println("Tip table saved as " + path);

} catch (Exception ex) {
Logger.getLogger(MainFrame.class.getName()).log(Level.SEVERE, null, ex);
return;
}

// set an empty table model for demonstration purposes
jTable.setModel(new Tip());

// read from file (deserialize)
Tip tipFromFile;
try ( FileChannel channel = FileChannel.open(path, StandardOpenOption.READ);
ObjectInputStream ois = new ObjectInputStream(Channels.newInputStream (channel)) ) {

// the instance to return
tipFromFile = (Tip)ois.readObject();

} catch (Exception ex) {
Logger.getLogger(MainFrame.class.getName()).log(Level.SEVERE, null, ex);
return;
}

// store the tip which has just been read in this instance
tip = tipFromFile;

// show the tip in the table
jTable.setModel(tip);
}

如主类注释中所示,保存并加载tip当未设置外观或选择“金属”时,工作正常。设置“Nimbus”LaF,序列化失败并显示 NullPointerException 。设置“Windows”LaF,序列化失败并显示 java.io.NotSerializableException: com.sun.java.swing.plaf.windows.XPStyle$Skin异常(exception),至少在我的机器上。

javax.swing.UIManager.LookAndFeelInfo 的 Javadoc声称它实现了 Serializable ,所以我没想到会出现这种异常。

使用文本编辑器检查保存的文件发现,除了 tip 的成员变量之外,还存储许多其他字段,例如 javax.swing.event.TableModelListeners , autoCreateColumnsFromModel还有很多。起初我怀疑这会导致异常,我只需要覆盖 writeObject(java.io.ObjectOutputStream out)writeObject(java.io.ObjectOutputStream out)上课Tip ,但附加字段仍保存到磁盘。再想一想,原因就很清楚了。有趣的是,我不会猜到会保存其他字段,因为我在 AbstractTableModel 的 javadoc 中找不到这些字段的提示。也不在 TableModel ,但好吧,没那么重要。

所以有帮助的是实现一个单独的类 TipTableModel extends AbstractTableMode接收 tip实例化时:

public TipTableModel(Tip tip) {
this.tip = tip;
}

因此,不要序列化实现 AbstractTableModel 的类型的变量,似乎建议将数据与表模型分离并仅序列化数据。

在调试时,我还意识到扩展 AbstractListModel 的对象(列表,而不是表)除了在类中声明的成员变量之外还保存许多字段,但是序列化这些成员不会导致任何异常,尽管将数据和列表模型分开可能也是明智的。

简历:1)始终在两个单独的类中实现数据和表模型。 2)也许某些外观和感觉需要增强(尽管我仍然相信我犯了一个错误,而不是Java的开发人员),并且3)向AbstractTableModel的javadoc添加注释澄清许多不明显的字段也被序列化。

Netbeans project of this example .

关于java - 设置外观时序列化 AbstractTableModel 失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45547229/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com