java中对象与字节数组相互转换

时间:2023-01-11 10:21:18

1.首先对象要继承Serializable接口

将字节转换为对象

[java] view plain copy
  1.    public static Object ByteToObject(byte[] bytes) {  
  2. Object obj = null;  
  3. try {  
  4.     // bytearray to object  
  5.     ByteArrayInputStream bi = new ByteArrayInputStream(bytes);  
  6.     ObjectInputStream oi = new ObjectInputStream(bi);  
  7.   
  8.     obj = oi.readObject();  
  9.     bi.close();  
  10.     oi.close();  
  11. catch (Exception e) {  
  12.     System.out.println("translation" + e.getMessage());  
  13.     e.printStackTrace();  
  14. }  
  15.        return obj;  
  16.    }  

将对像转换为字节

[java] view plain copy
  1. public static byte[] ObjectToByte(java.lang.Object obj) {  
  2.     byte[] bytes = null;  
  3.     try {  
  4.         // object to bytearray  
  5.         ByteArrayOutputStream bo = new ByteArrayOutputStream();  
  6.         ObjectOutputStream oo = new ObjectOutputStream(bo);  
  7.         oo.writeObject(obj);  
  8.   
  9.         bytes = bo.toByteArray();  
  10.   
  11.         bo.close();  
  12.         oo.close();  
  13.     } catch (Exception e) {  
  14.         System.out.println("translation" + e.getMessage());  
  15.         e.printStackTrace();  
  16.     }  
  17.     return bytes;  
  18. }