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();
}