数据库Blob数据类型转String
blob数据是存储大对象数据类型, 一般存放二进制的,所以才用字节存取。
首先判断blob数据是否为空,然后采用输入流读出数据,具体代码如下:
String content = null;
try {
if(image != null){
InputStream is = image.getBinaryStream();
byte[] b = new byte[is.available()];
is.read(b, 0, b.length);
content = new String(b);
}
System.out.println(content);
} catch ( IOException e) {
e.printStackTrace();
}
相关推荐
Lzs 2020-10-23
聚合室 2020-11-16
零 2020-09-18
Justhavefun 2020-10-22
jacktangj 2020-10-14
ChaITSimpleLove 2020-10-06
Andrea0 2020-09-18
周游列国之仕子 2020-09-15
afanti 2020-09-16
88234852 2020-09-15
YClimb 2020-09-15
风雨断肠人 2020-09-04
卖口粥湛蓝的天空 2020-09-15
stulen 2020-09-15
pythonxuexi 2020-09-06
abfdada 2020-08-26
梦的天空 2020-08-25