public class ObjectSaver { public static void main(String[] args) throws Exception { /*其中的 D:\\objectFile.obj 表示存放序列化對象的文件*/ //序列化對象 ObjectOutputStream out = new ObjectOutputStream(new FileOutputStream("c:\\test\\objectFile.obj")); Customer customer = new Customer("王麻子", 24); out.writeObject("你好!"); //寫入字面值常量 out.writeObject(new Date()); //寫入匿名Date對象 out.writeObject(customer); //寫入customer對象 out.close(); //反序列化對象 ObjectInputStream in = new ObjectInputStream(new FileInputStream("c:\\test\\objectFile.obj")); System.out.println("obj1 " + (String) in.readObject()); //讀取字面值常量 System.out.println("obj2 " + (Date) in.readObject()); //讀取匿名Date對象 Customer obj3 = (Customer) in.readObject(); //讀取customer對象 System.out.println("obj3 " + obj3); in.close(); } } class Customer implements Serializable { private String name; private int age; public Customer(String name, int age) { this.name = name; this.age = age; } public String toString() { return "name=" + name + ", age=" + age; } }
所謂的Serializable,就是java提供的通用數據保存和讀取的接口。至於從什麼地方讀出來和保存到哪裏去都被隱藏在函數參數的背後了。這樣子,任何類型只要實現了Serializable接口,就能夠被保存到文件中,或者做爲數據流經過網絡發送到別的地方。也能夠用管道來傳輸到系統的其餘程序中。這樣子極大的簡化了類的設計。只要設計一個保存一個讀取功能就能解決上面說得全部問題。java