码迷,mamicode.com
首页 > 编程语言 > 详细

Java-序列化

时间:2018-10-03 00:41:57      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:方法   stream   comm   exce   baidu   []   none   ado   hid   

  简单说就是为了保存在内存中的各种对象的状态,并且可以把保存的对象状态再读出来。虽然你可以用你自己的各种各样的方法来保存Object States,但是Java给你提供一种应该比你自己好的保存对象状态的机制,那就是序列化
public class SimpleSerial {  
     
        public static void main(String[] args) throws Exception {  
            File file = new File("person.out");  
     
            ObjectOutputStream oout = new ObjectOutputStream(new FileOutputStream(file));  
            Person person = new Person("John", 101, Gender.MALE);  
            oout.writeObject(person);  
            oout.close();  
     
            ObjectInputStream oin = new ObjectInputStream(new FileInputStream(file));  
            Object newPerson = oin.readObject(); // 没有强制转换到Person类型  
            oin.close();  
            System.out.println(newPerson);  
        }  
    } 

 



Java-序列化

标签:方法   stream   comm   exce   baidu   []   none   ado   hid   

原文地址:https://www.cnblogs.com/lbky/p/9738671.html

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