码迷,mamicode.com
首页 > 其他好文 > 详细

对象反序列化流ObjectInputStream

时间:2020-04-24 17:27:50      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:运行   技术   exce   nbsp   ros   oid   cto   ring   bsp   

ObjectInputStream反序列化先前使用ObjectOutputStream编写的原始数据和对象。
构造方法:ObjectInputStream(InputStream in)创建从指定的InputStream读取的ObjectInputStream。 
readObject()从ObjectInputStream读取一个对象。 
public static void main(String[] args) throws IOException, ClassNotFoundException {
        ObjectInputStream ois = new ObjectInputStream(new FileInputStream("myFile\\oos.txt"));

        Object obj = ois.readObject();

        //向下转型
        Student s = (Student)obj;

        System.out.println(s.getName()+","+s.getAge());
     ois.close(); }

运行结果:

技术图片

通过对象反序列化流就可以反序列化先前使用对象序列化编写的原始数据和对象。

技术图片

对象反序列化流ObjectInputStream

标签:运行   技术   exce   nbsp   ros   oid   cto   ring   bsp   

原文地址:https://www.cnblogs.com/pxy-1999/p/12768797.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!