zoukankan      html  css  js  c++  java
  • 序列化集合

    package com.itcast.demo06.ObjectStream;

    import java.io.*;
    import java.util.ArrayList;

    /**
    * @author newcityman
    * @date 2019/7/28 - 23:15
    * 练习:序列化集合
    * 步骤:
    * 1、定义一个存储Person对象的ArrayList集合
    * 2、往集合中存储person对象
    * 3、创建一个序列化流ObjectOutputStream,对集合进行序列化
    * 4、使用ObjectOutputStream对象中的方法writeObject,对集合进行序列化
    * 5、创建一个反序列化流ObjectInputStream
    * 6、使用ObjectInputStream对象中的方法readObject读取文件中保存的集合
    * 7、把Object类型的集合转换成ArrayList类型
    * 8、遍历ArrayList结合
    * 9、释放资源
    */
    public class Demo03Test {
    public static void main(String[] args) throws IOException, ClassNotFoundException {
    // 1、定义一个存储Person对象的ArrayList集合
    ArrayList<Person> pList = new ArrayList<>();
    // 2、往集合中存储person对象
    pList.add(new Person("张山峰",70));
    pList.add(new Person("赵义勇",20));
    pList.add(new Person("李敏",30));
    // 3、创建一个序列化流ObjectOutputStream,对集合进行序列化
    ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("day18_IOAndProperties\person.txt"));
    // 4、使用ObjectOutputStream对象中的方法writeObject,对集合进行序列化
    oos.writeObject(pList);
    // 5、创建一个反序列化流ObjectInputStream
    ObjectInputStream ois = new ObjectInputStream(new FileInputStream("day18_IOAndProperties\person.txt"));
    // 6、使用ObjectInputStream对象中的方法readObject读取文件中保存的集合
    Object o = ois.readObject();
    // 7、把Object类型的集合转换成ArrayList类型
    ArrayList<Person> list = (ArrayList<Person>)o;
    // 8、遍历ArrayList结合
    for (Person person : list) {
    System.out.println(person);
    }
    ois.close();
    oos.close();
    }
    }
  • 相关阅读:
    企业微信应用授权
    exec存储过程示例
    jquery判断对象是否存在
    IScroll5要防止重复加载
    transitionEnd不起作用解决方法
    微信接口 output {"errMsg":"translateVoice:fail, the permission value is offline verifying"}
    javascript保留两位小数
    html取消回车刷新提交
    企业微信后台登录
    企业微信开启开发者工具
  • 原文地址:https://www.cnblogs.com/newcityboy/p/11261547.html
Copyright © 2011-2022 走看看