被序列化的类要继承 Serializable 接口,关键字 transient 、static修饰的属性不被序列化
new ObjectOutputStream(FileOutputStream fos).writeObject(Object o); //序列化
new ObjectInputStream (FileInputStream fis).readObject(Object o); //反序列化
try - with - resources 语句:自动关闭资源的try
被序列化的类要继承 Serializable 接口,关键字 transient 、static修饰的属性不被序列化
new ObjectOutputStream(FileOutputStream fos).writeObject(Object o); //序列化
new ObjectInputStream (FileInputStream fis).readObject(Object o); //反序列化