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

《java序列化与反序列化》

时间:2015-04-25 09:26:47      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:

 /**
  * 把对象流化到本地
  * @param obj 需要流化的对象
  * @return true成功false失败
  */
 public static boolean objectToTxt(Object obj){
  ObjectOutputStream outputStream=null;
  try {
   outputStream=new ObjectOutputStream(new FileOutputStream(new File("E:/wo.txt")));
   outputStream.writeObject(obj);
   return true;
  } catch (FileNotFoundException e) {
   e.printStackTrace();
  } catch (IOException e) {
   e.printStackTrace();
  }finally{
   if(null!=outputStream){
    try {
     outputStream.close();
    } catch (IOException e) {
     e.printStackTrace();
    }
   }
  }
  return false;
 }
 /**
  * 把本地的对象文件转成实体
  * @param filePath 文件的路径
  * @return 想要的实体的实例
  */
 public static Object txtToObject(String filePath){
  ObjectInputStream inputStream=null;
  File file=new File(filePath);
  if(!file.exists())
   return null;
  try {
   inputStream=new ObjectInputStream(new FileInputStream(file));
   return inputStream.readObject();
  } catch (FileNotFoundException e) {
   e.printStackTrace();
  } catch (Exception e) {
   e.printStackTrace();
  }finally{
   if(null!=inputStream){
    try {
     inputStream.close();
    } catch (IOException e) {
     e.printStackTrace();
    }
   }
  }
  return null;
 }

《java序列化与反序列化》

标签:

原文地址:http://my.oschina.net/u/1269023/blog/406145

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