Oracle数据库BLOB字段的存取

时间:2021-09-08 00:45:53

述】
    Oracle的Blob字段比较特殊,他比long字段的性能要好很多,可以用来保存例如图片之类的二进制数据。
写入Blob字段和写入其它类型字段的方式非常不同,因为Blob自身有一个cursor,你必须使用cursor对
blob进行操作,因而你在写入Blob之前,必须获得cursor才能进行写入,那么如何获得Blob的cursor呢?
这需要你先插入一个empty的blob,这将创建一个blob的cursor,然后你再把这个empty的blob的cursor
用select查询出来,这样通过两步操作,你就获得了blob的cursor,可以真正地写入blob数据了。
【处理流程】

 

  1. package demo;
  2. import java.sql.*;
  3. import java.io.*;
  4. public class ReadBlob
  5. {
  6. //加载驱动程序
  7. static
  8. {
    1. //读取Blob数据
    2. package demo;
    3. import java.sql.*;
    4. import java.io.*;
    5. public class ReadBlob
    6. {
    7. //加载驱动程序
    8. static
    9. {
    10. try
    11. {
    12. Class.forName("oracle.jdbc.driver.OracleDriver");
    13. } catch (ClassNotFoundException e)
    14. {
    15. // TODO Auto-generated catch block
    16. e.printStackTrace();
    17. }
    18. }
    19. public static void main(String[] args)
    20. {
    21. try
    22. {
    23. //1. 建立连接
    24. String url = "jdbc:oracle:thin:@localhost:1521:OracleDB";
    25. Connection conn = DriverManager.getConnection(url,"scott","tiger");
    26. conn.setAutoCommit(false);
    27. //2. 查询数据
    28. String sql = "select image from user_info where user_id = 1";
    29. Statement stmt = conn.createStatement();
    30. ResultSet rs = stmt.executeQuery(sql);
    31. //3. 读取Blob类型数据
    32. Blob blob = null;
    33. if(rs.next())
    34. {
    35. blob = rs.getBlob(1);
    36. }
    37. byte[] temp = new byte[(int)blob.length()];
    38. InputStream in = blob.getBinaryStream();
    39. in.read(temp)s
    //读取Blob数据
    package demo; import java.sql.*;
    import java.io.*; public class ReadBlob
    {
    //加载驱动程序
    static
    { try
    {
    Class.forName("oracle.jdbc.driver.OracleDriver");
    } catch (ClassNotFoundException e)
    {
    // TODO Auto-generated catch block
    e.printStackTrace();
    }
    } public static void main(String[] args)
    {
    try
    {
    //1. 建立连接
    String url = "jdbc:oracle:thin:@localhost:1521:OracleDB";
    Connection conn = DriverManager.getConnection(url,"scott","tiger");
    conn.setAutoCommit(false); //2. 查询数据
    String sql = "select image from user_info where user_id = 1";
    Statement stmt = conn.createStatement();
    ResultSet rs = stmt.executeQuery(sql); //3. 读取Blob类型数据
    Blob blob = null;
    if(rs.next())
    {
    blob = rs.getBlob(1);
    }
    byte[] temp = new byte[(int)blob.length()];
    InputStream in = blob.getBinaryStream();
    in.read(temp)s
    1. <strong>//保证文件名唯一,你可以用主键+时间啊等等方法</strong>
    2. File file = new File("D://img.bmp");
    3. FileOutputStream fout = new FileOutputStream(file);
    4. fout.write(temp);
    5. in.close();
    6. fout.close();
    7. } catch (Exception e)
    8. {
    9. // TODO Auto-generated catch block
    10. e.printStackTrace();
    11. }
    12. }
    13. }
    			//保证文件名唯一,你可以用主键+时间啊等等方法
    File file = new File("D://img.bmp");
    FileOutputStream fout = new FileOutputStream(file);
    fout.write(temp);
    in.close();
    fout.close();
    } catch (Exception e)
    {
    // TODO Auto-generated catch block
    e.printStackTrace();
    }
    }
    }
  1. package demo;
  2. import java.sql.*;
  3. import oracle.sql.BLOB;//▲此处的BLOB类全大写, 而java.sql.Blob中的Blob非全大写
  4. import java.io.*;
  5. public class WriteBlob
  6. {
  7. //加载驱动程序
  8. static
  9. {
  10. try
  11. {
  12. Class.forName("oracle.jdbc.driver.OracleDriver");
  13. }
  14. catch(Exception e)
  15. {
  16. e.printStackTrace();
  17. }
  18. }
  19. public static void main(String[] args)
  20. {
  21. try
  22. {
  23. //1. 建立与数据库服务器的连接
  24. String url = "jdbc:oracle:thin:@localhost:1521:OracleDB";
  25. Connection conn = DriverManager.getConnection(url,"scott","tiger");
  26. conn.setAutoCommit(false);
  27. //2. 首先向表中插入空的Blob
  28. //★注意: 对于empty_blob()应放在SQL语句中直接赋值, 使用预置语句的方式赋值无法实现.
  29. String sql = "insert into user_info values(?,?,empty_blob())";
  30. PreparedStatement ps = conn.prepareStatement(sql);
  31. ps.setInt(1, 1);
  32. ps.setString(2, "Lucy");
  33. ps.executeUpdate();
  34. //3. 查询Blob, 获得Blob的Cursor
  35. sql = "select image from user_info where user_id = ?";
  36. ps = conn.prepareStatement(sql);
  37. ps.setInt(1, 1);
  38. ResultSet rs = ps.executeQuery();
  39. BLOB blob = null;
  40. if(rs.next())
  41. {
  42. blob = (BLOB)rs.getBlob(1);
  43. }
  44. //4. 使用字节流将待入库的文件写入到blob中
  45. File file = new File("D://iriver//sample1.bmp");
  46. FileInputStream fin = new FileInputStream(file);
  47. byte[] temp = new byte[fin.available()];
  48. fin.read(temp);
  49. OutputStream out = blob.getBinaryOutputStream();
  50. out.write(temp);
  51. fin.close();
  52. out.close();
  53. //5. 向数据库中写入数据
  54. sql = "update user_info set image = ? where user_id = ?";
  55. ps = conn.prepareStatement(sql);
  56. ps.setBlob(1, blob);
  57. ps.setInt(2, 1);
  58. ps.executeUpdate();
  59. conn.commit();
  60. } catch (Exception e)
  61. {
  62. e.printStackTrace();
  63. }
  64. }
  65. }