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

Redis存储对象序列化和反序列化

时间:2019-10-24 09:19:05      阅读:885      评论:0      收藏:0      [点我收藏+]

标签:static   new   序列   catch   read   inpu   tput   you   write   

import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;

public class SerializeUtil {
	public static byte[] serialize(Object object) {

        ObjectOutputStream oos = null;

         ByteArrayOutputStream baos = null;

         try {
              // 序列化

             baos = new ByteArrayOutputStream();

             oos = new ObjectOutputStream(baos);

             oos.writeObject(object);

              byte[] bytes = baos.toByteArray();

              return bytes;

        } catch (Exception e) {

        }
         return null;
  }




	   public static Object unserialize( byte[] bytes) {
	
	        ByteArrayInputStream bais = null;
	
	         try {
	
	              // 反序列化
	
	             bais = new ByteArrayInputStream(bytes);
	
	             ObjectInputStream ois = new ObjectInputStream(bais);
	
	              return ois.readObject();
	
	        } catch (Exception e) {
	        }
	         return null;
	  }
}

  

Redis存储对象序列化和反序列化

标签:static   new   序列   catch   read   inpu   tput   you   write   

原文地址:https://www.cnblogs.com/liaoyanglong/p/11730148.html

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