欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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接口

序列化注意事项

Java 序列化流的使用

相关标签: Java基础