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

装箱拆箱

时间:2017-08-07 22:05:53      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:文件   多个   for   row   装箱拆箱   数据   exce   leo   try   

步骤 :装箱(1)先将数据装箱实体对象.
    (2)多个实体对象在装箱给实体.
    (3)实体集合在保存到文件
拆箱:(1)先将文件中的数据拆给集合
    (2)集合拆给对象
    (3)集合拆给实体


public class FIle_01 { public static void main (String [] args) throws IOException, IOException{ //数据存入集合 ArrayList <Apple> list = new ArrayList<Apple>(); list.add(new Apple("001",12,30)); list.add(new Apple("002",22,40)); //集合保存到文件 ObjectOutputStream ob = new ObjectOutputStream( new FileOutputStream("D://22.txt")); ob.writeObject(list); //文件写入集合 ObjectInputStream ib = new ObjectInputStream(new FileInputStream("D://22.txt")); try { List <Apple>obj = (List<Apple>) ib.readObject() ; System.out.println(obj); // 集合写入对象 for(Apple app:obj){ System.out.println(app); } } catch (ClassNotFoundException e) { e.printStackTrace(); } } }

  

装箱拆箱

标签:文件   多个   for   row   装箱拆箱   数据   exce   leo   try   

原文地址:http://www.cnblogs.com/fy02223y/p/7301202.html

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