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

转自:https://www.cnblogs.com/forever2698/p/4747349.html

package com.bo.test;
 
import java.io.FileOutputStream;
import java.io.InputStream;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
/**
 * 示例说明:
 * JAVA读取Oracle数据库BLOB字段数据文件并保存到本地文件
 * 1. 使用Oracle的JDBC驱动。
 * 2. BLOB字段中存储的是一个文件,把BLOB字段中存储的内容保存到磁盘中形成文件。
 * 程序代码片断如下:
 *
 *
 */
public class ReadDBIo2File {
    public ReadDBIo2File() {
    }
 
    public static void main(String args[]) {
        ReadDBIo2File test = new ReadDBIo2File();
 
        if (test.getDate()) {
            System.out.print("操作成功!");
        } else {
            System.out.print("操作异常!");
        }
    }
 
    public boolean getDate() {
        Connection conn = null;
        Statement sql = null;
        ResultSet rs = null;
        try {
            try {
                // Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                // String sourceURL = "jdbc:odbc:ORDB";
                Class.forName("oracle.jdbc.driver.OracleDriver");
                String sourceURL = "jdbc:oracle:thin:@192.168.121.151:1521:oracle";
//        String sourceUrl = "jdbc:oracle:thin:@(DESCRIPTION = (ADDRESS_LIST =(ADDRESS = (PROTOCOL = TCP)(HOST = 10.10.52.53)(PORT = 1521)) ) (CONNECT_DATA =(SERVICE_NAME = orcl)))";
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 = new FileOutputStream(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; } }

 

转载于:https://www.cnblogs.com/cailijuan/p/10573025.html

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
你可以使用以下的 Java 工具类来实现将 Oracle 数据库BLOB 类型照片读取保存到本地目录,并重命名保存的功能: ```java import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.sql.*; public class BlobImageUtil { public static void saveBlobImageToDirectory(String url, String username, String password, String query, String columnName, String savePath) { Connection connection = null; PreparedStatement preparedStatement = null; ResultSet resultSet = null; try { // 建立数据库连接 connection = DriverManager.getConnection(url, username, password); preparedStatement = connection.prepareStatement(query); resultSet = preparedStatement.executeQuery(); while (resultSet.next()) { // 获取 BLOB 字段的输入流 Blob blob = resultSet.getBlob(columnName); InputStream inputStream = blob.getBinaryStream(); // 生成保存文件名 String fileName = generateFileName(); // 保存到本地目录 saveBlobImage(inputStream, savePath, fileName); // 关闭输入流 inputStream.close(); } } catch (SQLException | IOException e) { e.printStackTrace(); } finally { // 关闭资源 closeResultSet(resultSet); closeStatement(preparedStatement); closeConnection(connection); } } private static void saveBlobImage(InputStream inputStream, String savePath, String fileName) throws IOException { FileOutputStream fileOutputStream = null; try { // 创建保存目录 File saveDir = new File(savePath); if (!saveDir.exists()) { saveDir.mkdir(); } // 创建保存文件 File file = new File(saveDir, fileName); fileOutputStream = new FileOutputStream(file); // 读取输入流并写入文件 byte[] buffer = new byte[1024]; int bytesRead; while ((bytesRead = inputStream.read(buffer)) != -1) { fileOutputStream.write(buffer, 0, bytesRead); } } finally { // 关闭输出流 if (fileOutputStream != null) { fileOutputStream.close(); } } } private static String generateFileName() { // 生成唯一的文件名,可根据需求进行修改 return UUID.randomUUID().toString() + ".jpg"; } private static void closeResultSet(ResultSet resultSet) { if (resultSet != null) { try { resultSet.close(); } catch (SQLException e) { e.printStackTrace(); } } } private static void closeStatement(Statement statement) { if (statement != null) { try { statement.close(); } catch (SQLException e) { e.printStackTrace(); } } } private static void closeConnection(Connection connection) { if (connection != null) { try { connection.close(); } catch (SQLException e) { e.printStackTrace(); } } } } ``` 你可以使用以下代码来调用该工具类: ```java String url = "jdbc:oracle:thin:@localhost:1521:xe"; // 数据库连接 URL String username = "your_username"; // 数据库用户名 String password = "your_password"; // 数据库密码 String query = "SELECT image_blob FROM your_table"; // 查询语句,将 your_table 替换为你的表名和字段名 String columnName = "image_blob"; // BLOB 字段名 String savePath = "path_to_save_directory"; // 本地保存目录 BlobImageUtil.saveBlobImageToDirectory(url, username, password, query, columnName, savePath); ``` 请确保替换上述代码的相关参数以适应你的实际情况,并且提供正确的数据库连接信息和查询语句。此外,确保你的 Oracle 驱动程序已正确配置。

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值