黑马程序员技术交流社区

标题: ObjectInputStream [打印本页]

作者: wstm198907    时间: 2016-7-11 07:41
标题: ObjectInputStream
        public static void main(String[] args) throws IOException, Exception {
               
                //将集合对象一次读取
                ObjectInputStream ois = new ObjectInputStream(new FileInputStream("person.txt"));
                ArrayList<Person> list = (ArrayList<Person>)ois.readObject();
               
                for (Person person : list) {
                        System.out.println(person);
                }
                ois.close();
        }




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2