在序列化中,serialVersionUID就相当于一把钥匙。在一个类或者实际对象被序列化之后,反序列化时一旦发现serialVersionUID不匹配,那么反序列化是不会成功的。所以这玩意儿就是一个认证工具。
如果自己不去申明自定义的serialVersionUID,程序会自动根据类的信息生成默认的serialVersionUID,这个serialVersionUID对类的细节要求非常高,一旦类发生变化,都有可能导致serialVersionUID的变化,从而导致反序列化的不成功。
public class JustForTest implements Serializable {
private static final long serialVersionUID = 2482473919699123967L;
public static void main(String[] args){
StringBuffer sb = new StringBuffer();
}
}
那么这样一来,serialVersionUID就是一个唯一的、不可变的标识符。
package tjq.demo.controller;
import java.io.*;
public class Servial_Test{
public static void servial(Object object) throws FileNotFoundException,IOException{
File file = new File("/Users/Sirius/Documents/test.txt");
ObjectOutputStream out = new ObjectOutputStream(new FileOutputStream(file));
out.writeObject(object);
System.out.println("序列化成功!");
out.close();
}
public static void deservial() throws FileNotFoundException,IOException,ClassNotFoundException{
ObjectInputStream ois = new ObjectInputStream(new FileInputStream("/Users/Sirius/Documents/test.txt"));
Object object = ois.readObject();
System.out.println("反序列化成功!");
System.out.println(object);
ois.close();
}
public static void main(String[] args) throws IOException,ClassNotFoundException{
JustForTest justForTest = new JustForTest();
justForTest.setName("辛普森");
justForTest.setAge(25);
servial(justForTest);
deservial();
}
}