1. 什么是Serializable接口?
当一个类实现了Serializable接口(该接口仅为标记接口,不包含任何方法),表示该类可以被序列化。
序列化的目的是将一个实现了Serializable接口的对象转换成一个字节序列, 可以将该字节序列保存起来(如:保存在一个文件中),以后可以随时将该字节序列恢复为原来的对象。甚至可以将该字节序列放到其他计算机上或者通过网络传输到其他计算机上恢复,只要该计算机平台存在相应的类。
2. 如何实现?
首先创建一个OutputStream对象,然后将其封装在一个ObjectOutputStream对象内,再调用writeObject()方法即可序列化一个对象。反序列化也类似。
1 import java.io.*; 2 3 4 public class Person implements Serializable { 5 private String userName; 6 private String password; 7 8 9 public Person(String userName, String password) { 10 this.userName = userName; 11 this.password = password; 12 } 13 14 15 public String toString() { 16 return "userName:" + userName + " password:" + password; 17 } 18 19 20 public static void main(String[] args) 21 throws FileNotFoundException, IOException, ClassNotFoundException { 22 23 //序列化一个对象(存储到一个文件) 24 ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("person.out")); 25 oos.writeObject("Save a object: "); 26 oos.writeObject(new Person("Bruce", "123456")); 27 oos.close(); 28 29 30 //反序列化,将该对象恢复(存储到一个文件) 31 ObjectInputStream ois = new ObjectInputStream(new FileInputStream("person.out")); 32 String s = (String)ois.readObject(); 33 Person p = (Person)ois.readObject(); 34 System.out.println(s + p); 35 36 37 //序列化一个对象(存储到字节数组) 38 ByteArrayOutputStream baos = new ByteArrayOutputStream(); 39 ObjectOutputStream oos2 = new ObjectOutputStream(baos); 40 oos2.writeObject("Save another object: "); 41 oos2.writeObject(new Person("Phil", "654321")); 42 oos2.close(); 43 44 45 //反序列化,将该对象恢复(存储到字节数组) 46 ObjectInputStream ois2 = new ObjectInputStream(new ByteArrayInputStream(baos.toByteArray())); 47 s = (String)ois2.readObject(); 48 p = (Person)ois2.readObject(); 49 System.out.println(s + p); 50 } 51 } 52
输出信息:
Save a object: userName:Bruce password:123456 Save another object: userName:Phil password:654321
3. transient关键字:
1)引入原因:自动序列化将对象所有的字段都持久化了,有的时候需要对某些字段不进行持久化(例如:密码,因为序列化后会暴露密码),所以我们使用transient关键字让Serializable对象某些字段不被序列化。
2)操作:
public class Person implements Serializable{ private String userName; // 不序列化password——因为序列化后会暴露密码 private transient String password; }
加入transient关键字后,上面程序的运行结果:
Save a object: userName:Bruce password:null Save another object: userName:Phil password:null
3)如果想要控制序列化字段,使得被transient修饰的字段也能被序列化:有两种方法
1. 手动序列化,添加两个私有的方法:writeObject(),readObject()
1 import java.io.*; 2 3 public class Person implements Serializable { 4 private String userName; 5 private transient String password; 6 7 8 public Person(String userName, String password) { 9 this.userName = userName; 10 this.password = password; 11 } 12 13 14 public String toString() { 15 return "userName:" + userName + " password:" + password; 16 } 17 18 19 private void writeObject(ObjectOutputStream out) throws IOException { 20 //序列化所有非transient字段,必须是该方法的第一个操作 21 out.defaultWriteObject(); 22 23 //序列化transient字段 24 out.writeObject(password); 25 } 26 27 28 private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException { 29 //反序列化所有非transient字段,必须是该方法的第一个操作 30 in.defaultReadObject(); 31 32 //反序列化transient字段 33 password = (String)in.readObject(); 34 } 35 36 37 public static void main(String[] args) throws FileNotFoundException, IOException, ClassNotFoundException { 38 //序列化一个对象(存储到一个文件) 39 ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("person.out")); 40 oos.writeObject("Save a object: "); 41 oos.writeObject(new Person("Bruce", "123456")); 42 oos.close(); 43 44 45 //反序列化,将该对象恢复(存储到一个文件) 46 ObjectInputStream ois = new ObjectInputStream(new FileInputStream("person.out")); 47 String s = (String)ois.readObject(); 48 Person p = (Person)ois.readObject(); 49 System.out.println(s + p); 50 } 51 }
输出结果:
Save a object:
userName:David password:13579
2. 使用Externalizable接口替代Serializable接口。
- 此时需要定义一个默认的构造器,否则将会得到一个异常:(java.io.InvalidClassException: Person; Person; no valid constructor);
- 还需要定义两个方法(writeExternal()和readExternal())来控制要序列化的字段
1 import java.io.*; 2 3 //使用Externalizable接口代替Serializable接口 4 public class Person implements Externalizable { 5 private String userName; 6 private String password; 7 8 // 需要一个默认的构造器,否则得到一个异常 9 public Person() { 10 System.out.println("default constructor invoked!"); 11 } 12 13 14 public Person(String userName, String password) { 15 this.userName = userName; 16 this.password = password; 17 } 18 19 20 public String toString() { 21 return "userName:" + userName + " password:" + password; 22 } 23 24 25 public void writeExternal(ObjectOutput out) throws IOException { 26 //序列化字段 27 out.writeObject(userName); 28 out.writeObject(password); 29 } 30 31 32 public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { 33 //反序列化字段 34 userName = (String)in.readObject(); 35 password = (String)in.readObject(); 36 } 37 38 39 public static void main(String[] args) throws FileNotFoundException, IOException, ClassNotFoundException { 40 / /序列化一个对象(存储到一个文件) 41 ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("person.out")); 42 oos.writeObject("Save a object: "); 43 oos.writeObject(new Person("Leo", "1984")); 44 oos.close(); 45 46 47 //反序列化,将该对象恢复(存储到一个文件) 48 ObjectInputStream ois = new ObjectInputStream(new FileInputStream("person.out")); 49 String s = (String)ois.readObject(); 50 Person p = (Person)ois.readObject(); 51 System.out.println(s + p); 52 } 53 } 54
得到结果如下:
default constructor invoked! Save a object: userName:Leo password:1984
注意:
以上方式只能恢复成Java对象,如果想要恢复成其他对象(如C++对象),那就要将Java对象转换为XML格式,这样可以使其被各种平台和各种语言使用。可以使用随JDK一起发布的javax.xam.*类库,或者使用开源XOM类库(可以从www.xom.nu下载并获得文档)。