oracle数据库中blob照片存放到本地
背景介绍
最近有个需求是将oracle数据库中存放的blob类型的二进制流照片,下载到本地,写了一个照片导出的方法,方便备查。
第一步:查询数据库中照片
查询数据库中存放的照片的字段信息,放到 DataTable 数据结构中。
String picturePathFolder=System.getProperty("resourceFiles.location")
+ File.separator + "photo" ;
//判断文件是否存在
File folderFile = new File(picturePathFolder);
JSONObject resJson = new JSONObject();
if (!folderFile.exists()) {
folderFile.mkdir();
}
//数据库中查询照片
String sql="select userID,img from user where userid = ";
DataTable dt_data = jdbcTemplate.query(
sql,paraMap, new DataTableResultSetExtractor());
第二步、处理照片
读取查询到的数据流,将其写入到本地指定的路径下。
//定义一个blob类型的对象
byte[] blob = null;
String picturePathFileJPG = "";
//遍历查询的结果
if (dt_data.getRowCount() > 0) {
if(dt_data.get(i).get("img") != null) {
//读取对应的流信息 blobToBytes参考下面的方法
blob = blobToBytes((Blob) photoList.get(i).get("img"));
picturePathFileJPG = picturePathFolder + File.separator
+ photoList.get(i).get("userID") + ".jpg";
if (blob != null) {
try {
InputStream in = new ByteArrayInputStream(blob);
FileOutputStream file = new FileOutputStream(picturePathFileJPG);
FileUtils.write(in, file);
file.close();
in.close();
} catch (Exception e) {
resJson.put("success", false);
return resJson.toString();
}
}
}
}
blobToBytes 转换方法
将blob转化为byte[],转化二进制流的程序代码。
private byte[] blobToBytes(Blob blob) {
InputStream is = null;
byte[] b = null;
try {
is = blob.getBinaryStream();
b = new byte[(int) blob.length()];
is.read(b);
return b;
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
is.close();
is = null;
} catch (IOException e) {
e.printStackTrace();
}
}
return b;
}
可能出现的错误
出错 [B cannot be cast to java.sql.Blob 原因:BLOB类型的数据从数据库提取出来,提示不能强制转换为blob
byte[] object = (byte[]) Map.get("blob");
博客来源
【1】https://blog.csdn.net/qq_39548700/article/details/98878413