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();//從流中讀取對象


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章