Mysql存儲java對象
MySQL  設置字段為 blob
保存對象,先將對象序列化為byte[]  使用 setObject(byte[] bytes)
ByteArrayOutputStream baos = new ByteArrayOutputStream();     ObjectOutputStream out = null;     try {       out = new ObjectOutputStream(baos);       out.writeObject(java實例對象);        } catch (IOException e) {       logger.error("msg2Bytes error!", e);     }finally{       try {         out.close();       } catch (IOException e) {         logger.error("msg2Bytes error!", e);       }     }          return baos.toByteArray(); 獲取對象 使用getBytes(),將獲取的byte[]反序列化為Java 對象
ByteArrayInputStream bais;     ObjectInputStream in = null;     try{       bais = new ByteArrayInputStream(bytes);       in = new ObjectInputStream(bais);        return (java類)in.readObject();     }finally{       if(in != null){         try {           in.close();         } catch (IOException e) {           logger.error("bytes2Msg error!", e);         }       }     } 網上的其他方式會有各類問題,請慎用。
包括:
1.設置url參數 autoDeserialize=true
2.setObject(java實例對象)        查詢
ObjectInputStream oips = new ObjectInputStream(rs.getBinaryStream(1));  
ArrayList<String> obb = (java類)oips.readObject();//從流中讀取對象  
感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!
新聞熱點
疑難解答