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

序列化和文件的输入/输出

时间:2018-12-18 22:43:03      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:abs   spel   col   scrollbar   als   none   bottom   height   dde   

  • 将序列化对象写入文件
1.创建出FileOutputStream
FileOutputStream fileStream=new FileOutputStream("game.ser");
2.创建ObjectOutputStream
ObjectOutputStream os=new ObjectOutputStream(fileStream);
1
 
1
ObjectOutputStream os=new ObjectOutputStream(fileStream);
3.写入对象
os.writeObject(characterOne);
1
 
1
os.writeObject(characterOne);
4.关闭ObjectOutputStream
os.close();
1
 
1
os.close();




序列化和文件的输入/输出

标签:abs   spel   col   scrollbar   als   none   bottom   height   dde   

原文地址:https://www.cnblogs.com/leo--blog/p/10140190.html

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