序列化03对象的反序列化流ObjectInputStream

26次阅读

共计 1020 个字符,预计需要花费 3 分钟才能阅读完成。

package com.itheima.demo04.ObjectStream;

import java.io.FileInputStream;
import java.io.IOException;
import java.io.ObjectInputStream;

/*

java.io.ObjectInputStream extends InputStream
ObjectInputStream: 对象的反序列化流
作用: 把文件中保存的对象, 以流的方式读取出来使用

构造方法:
    ObjectInputStream(InputStream in) 创建从指定 InputStream 读取的 ObjectInputStream。参数:
        InputStream in: 字节输入流
特有的成员方法:
    Object readObject() 从 ObjectInputStream 读取对象。使用步骤:
    1. 创建 ObjectInputStream 对象, 构造方法中传递字节输入流
    2. 使用 ObjectInputStream 对象中的方法 readObject 读取保存对象的文件
    3. 释放资源
    4. 使用读取出来的对象 (打印)

 readObject 方法声明抛出了 ClassNotFoundException(class 文件找不到异常)
 当不存在对象的 class 文件时抛出此异常
 反序列化的前提:
    1. 类必须实现 Serializable
    2. 必须存在类对应的 class 文件 

*/
public class Demo02ObjectInputStream {

public static void main(String[] args) throws IOException, ClassNotFoundException {
    //1. 创建 ObjectInputStream 对象, 构造方法中传递字节输入流
    ObjectInputStream ois = new ObjectInputStream(new FileInputStream("10_IO\\person.txt"));
    //2. 使用 ObjectInputStream 对象中的方法 readObject 读取保存对象的文件
    Object o = ois.readObject();
    //3. 释放资源
    ois.close();
    //4. 使用读取出来的对象 (打印)
    System.out.println(o);
    Person p = (Person)o;
    System.out.println(p.getName()+p.getAge());
}

}

正文完
 0