类不会序列化java

时间:2015-05-22 14:10:11

标签: java serialization

很抱歉,如果已经问到这个问题,但我在序列化我制作的课程时遇到了一些问题。我测试了字符串和数组列表但是当我尝试使用由两个字符串组成的类的NoteCard时,在序列化时出现错误并且明显反序列化。这些是我在运行程序时遇到的错误。

java.io.NotSerializableException: com.leopoldmarx.note.notecard.NoteCard
    at java.io.ObjectOutputStream.writeObject0(Unknown Source)
    at java.io.ObjectOutputStream.writeObject(Unknown Source)
    at com.leopoldmarx.note.program.Driver.main(Driver.java:22)
java.io.WriteAbortedException: writing aborted; java.io.NotSerializableException: com.leopoldmarx.note.notecard.NoteCard
    at java.io.ObjectInputStream.readObject0(Unknown Source)
    at java.io.ObjectInputStream.readObject(Unknown Source)
    at com.leopoldmarx.note.program.Driver.main(Driver.java:33)
Caused by: java.io.NotSerializableException: com.leopoldmarx.note.notecard.NoteCard
    at java.io.ObjectOutputStream.writeObject0(Unknown Source)
    at java.io.ObjectOutputStream.writeObject(Unknown Source)
    at com.leopoldmarx.note.program.Driver.main(Driver.java:22)

错误的代码如下:

NoteCard test = new NoteCard("this is the front", "this is the back");
System.out.println(test.getFront() + test.getBack());
try {

    ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("hey.cardset"));
    oos.writeObject(test);
    oos.close();
}

catch(Exception e) {
    e.printStackTrace();
}

try {

    ObjectInputStream ois = new ObjectInputStream(new FileInputStream("hey.cardset"));
    NoteCard n1 = (NoteCard) ois.readObject();
    System.out.println(n1.getFront() + n1.getBack());
}

catch(Exception e) {
    e.printStackTrace();
}

我已经浏览了整个互联网并浏览了几本书,一无所获。谢谢你的帮助!

1 个答案:

答案 0 :(得分:1)

确保NoteCard实现java.io.Serializable接口

public class NoteCard implements java.io.Serializable

以及如果NoteCard包含其他类成员,请确保他们也在实施java.io.Serializable

如果要序列化类,请始终计算serialVersionUID,并且大多数IDE都会为您执行此操作。如果您没有提供,那么java会在您序列化时为您完成,但不建议这样做。

private static final long serialVersionUID = -3457676767677L;