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

序列化和反序列化

时间:2018-01-31 14:29:38      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:oid   txt   pos   output   print   color   wan   tput   序列化   

public class SerialTest {

    public static void main(String[] args) throws IOException {
        //序列化
        Person person=new Person(1234,"wang");
        FileOutputStream fos = new FileOutputStream("Person.txt");
        ObjectOutputStream oos = new ObjectOutputStream(fos);
        oos.writeObject(person);
        oos.flush();
        oos.close();

    }
    @Test
    public void deserialTest() throws IOException, ClassNotFoundException {
        //反序列化
        Person person;
        FileInputStream fis = new FileInputStream("Person.txt");
        ObjectInputStream ois = new ObjectInputStream(fis);
        person = (Person) ois.readObject();
        ois.close();;
        System.out.println("Person Deserial:"+person);
    }
}

 

序列化和反序列化

标签:oid   txt   pos   output   print   color   wan   tput   序列化   

原文地址:https://www.cnblogs.com/mryangbo/p/8391198.html

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