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

blob 转换为byte[]

时间:2014-08-12 18:31:54      阅读:261      评论:0      收藏:0      [点我收藏+]

标签:os   io   ar   new   size   ad   on   sp   

 

blob 转换为byte[]

public byte[] blobToByte(Blob blob) throws Exception {
byte[] bytes = null;
try {
InputStream in=blob.getBinaryStream();
BufferedInputStream inBuffered = new BufferedInputStream(in);
ByteArrayOutputStream out = new ByteArrayOutputStream(1024);
byte[] temp = new byte[1024];
int size = 0;
while ((size = inBuffered.read(temp)) != -1) {
out.write(temp, 0, size);
}
inBuffered.close();
in.close();
bytes = out.toByteArray();
} catch(Exception ex){
ex.printStackTrace();
}
return bytes;
}

blob 转换为byte[],布布扣,bubuko.com

blob 转换为byte[]

标签:os   io   ar   new   size   ad   on   sp   

原文地址:http://www.cnblogs.com/xiaohaizhuimeng/p/3907732.html

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