Java 序列化流的使用
程序员文章站
2024-02-26 21:36:52
...
1. ObjectOutputStream 对象的序列化流
/*
ObjectOutputStream对象的序列化流
构造方法
(1)ObjectOutputStream(OutputStream out);创建写入指定OutputStream的ObjectOutputStream对象
特有的成员方法:
void writeObject(Object obj);将指定对象写入ObjectOutputStream
*/
private static void oos01() throws IOException {
ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream(".\\person.txt"));
oos.writeObject(new person("AA",15));
oos.close();
}
2. ObjectInputStream对象的反序列化流
/*
ObjectInputStream对象的反序列化流
构造方法
ObjectInputStream(inputStream in);创建读取指定InputStream的ObjectInputStream对象
特有的成员方法:
Object readObject();从ObjectInputStream中读取对象
*/
private static void os01() throws Exception {
ObjectInputStream ois = new ObjectInputStream(new FileInputStream(".\\person.txt"));
person p = (person)ois.readObject();
System.out.println(p.getName());
ois.close();
}
注:person对象必须实现Serializable接口
序列化注意事项
上一篇: Mysql插入中文变为全问号???的问题 解决方法
下一篇: Java序列化API的使用