java 读取 mysql blob字段_Java读取oracle数据库中blob字段数据文件保存到本地文件(转载)...

String user= "root";

String password= "password";

conn=DriverManager.getConnection(sourceURL, user, password);

sql=conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,

ResultSet.CONCUR_UPDATABLE);//注:“ini”字段为BLOB字段

String sqlstr = "select * from report_file t where t.id = '6475880'";

rs=sql.executeQuery(sqlstr);while(rs.next()) {

String name= rs.getString("id");//如下使用JdbcOdbcDriver则报错:Hit uncaught exception//java.lang.UnsupportedOperationException//java.sql.Blob blob = rs.getBlob("ini");//注意这里的写法:使用的是OracleDriver//reportfile数据库中的blob字段

oracle.sql.BLOB blob = (oracle.sql.BLOB) rs.getBlob("reportfile");

String filepath= "C:/" + name + ".pdf";

System.out.println("输出文件路径为:" +filepath);try{

InputStream in= blob.getBinaryStream(); //建立输出流

FileOutputStream file = newFileOutputStream(filepath);int len = (int) blob.length();byte[] buffer = new byte[len]; //建立缓冲区

while ((len = in.read(buffer)) != -1) {

file.write(buffer,0, len);

}

file.close();

in.close();

}catch(Exception e) {

System.out.println("I/O Exception.");return false;

}

}

}finally{

rs.close();

sql.close();

conn.close();

}

}catch(SQLException e) {

System.out.println("SQLException.");return false;

}catch(ClassNotFoundException e) {

System.out.println("ClassNotFoundException.");return false;

}return true;

}

}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值