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

java 类序列化

时间:2017-06-12 14:36:30      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:put   out   turn   return   rac   array   input   tac   his   

序列化:
ByteArrayOutputStream obj = new  ByteArrayOutputStream(); 
try
{
    ObjectOutputStream out = new ObjectOutputStream(obj);
    out.writeObject(this);
    return obj.toByteArray();
            
} catch (IOException e) 
{    
    e.printStackTrace();
}
反序列化:
ByteArrayInputStream bin = new ByteArrayInputStream((byte[])objs);
try 
{
    ObjectInputStream obin = new ObjectInputStream(bin);
    Object  obj = obin.readObject();
}
catcch(Exception e)
{
    e.printStackTrace();
}

java 类序列化

标签:put   out   turn   return   rac   array   input   tac   his   

原文地址:http://www.cnblogs.com/flyingcloude/p/6992424.html

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