当前位置: 首页 > 编程笔记 >

详解jdbc实现对CLOB和BLOB数据类型的操作

尉迟冯浩
2023-03-14
本文向大家介绍详解jdbc实现对CLOB和BLOB数据类型的操作,包括了详解jdbc实现对CLOB和BLOB数据类型的操作的使用技巧和注意事项,需要的朋友参考一下

详解jdbc实现对CLOB和BLOB数据类型的操作

1、 读取操作

CLOB 

//获得数据库连接    
  Connection con = ConnectionFactory.getConnection();    
  con.setAutoCommit(false);    
  Statement st = con.createStatement();    
  //不需要“for update”    
  ResultSet rs = st.executeQuery("select CLOBATTR from TESTCLOB where ID=1");    
  if (rs.next())    
  {    
    java.sql.Clob clob = rs.getClob("CLOBATTR");    
    Reader inStream = clob.getCharacterStream();    
    char[] c = new char[(int) clob.length()];    
    inStream.read(c);    
    //data是读出并需要返回的数据,类型是String    
    data = new String(c);    
    inStream.close();    
  }    
  inStream.close();    
  con.commit();    
  con.close();   

BLOB

//获得数据库连接    
  Connection con = ConnectionFactory.getConnection();    
  con.setAutoCommit(false);    
  Statement st = con.createStatement();    
  //不需要“for update”    
  ResultSet rs = st.executeQuery("select BLOBATTR from TESTBLOB where ID=1");    
  if (rs.next())    
  {    
    java.sql.Blob blob = rs.getBlob("BLOBATTR");    
    InputStream inStream = blob.getBinaryStream();    
    //data是读出并需要返回的数据,类型是byte[]    
    data = new byte[input.available()];    
    inStream.read(data);    
    inStream.close();    
  }    
  inStream.close();    
  con.commit();    
  con.close();  

2、写入操作

CLOB

//获得数据库连接    
  Connection con = ConnectionFactory.getConnection();    
  con.setAutoCommit(false);    
  Statement st = con.createStatement();    
  //插入一个空对象empty_clob()    
  st.executeUpdate("insert into TESTCLOB (ID, NAME, CLOBATTR) values (1, "thename", empty_clob())");    
  //锁定数据行进行更新,注意“for update”语句    
  ResultSet rs = st.executeQuery("select CLOBATTR from TESTCLOB where ID=1 for update");    
  if (rs.next())    
  {    
    //得到java.sql.Clob对象后强制转换为oracle.sql.CLOB   
    oracle.sql.CLOB clob = (oracle.sql.CLOB) rs.getClob("CLOBATTR");    
    Writer outStream = clob.getCharacterOutputStream();    
    //data是传入的字符串,定义:String data    
    char[] c = data.toCharArray();    
    outStream.write(c, 0, c.length);    
  }    
  outStream.flush();    
  outStream.close();    
  con.commit();    
  con.close();  
  

BLOB

//获得数据库连接    
  Connection con = ConnectionFactory.getConnection();    
  con.setAutoCommit(false);    
  Statement st = con.createStatement();    
  //插入一个空对象empty_blob()    
  st.executeUpdate("insert into TESTBLOB (ID, NAME, BLOBATTR) values (1, "thename", empty_blob())");    
  //锁定数据行进行更新,注意“for update”语句    
  ResultSet rs = st.executeQuery("select BLOBATTR from TESTBLOB where ID=1 for update");    
  if (rs.next())    
  {    
    //得到java.sql.Blob对象后强制转换为oracle.sql.BLOB   
    oracle.sql.BLOB blob = (oracle.sql.BLOB) rs.getBlob("BLOBATTR");    
    OutputStream outStream = blob.getBinaryOutputStream();    
    //data是传入的byte数组,定义:byte[] data   
    outStream.write(data, 0, data.length);    
  }    
  outStream.flush();    
  outStream.close();    
  con.commit();    
  con.close();    

3、读写CLOB/BLOB数据到文件

TNS:

# tnsnames.ora Network Configuration File: d:\oracle\product\10.2.0\client_1\NETWORK\ADMIN\tnsnames.ora  
 # Generated by Oracle configuration tools.  
 
 ORADB =  
   (DESCRIPTION =  
     (ADDRESS_LIST =  
       (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.100)(PORT = 1521))  
     )  
     (CONNECT_DATA =  
       (SID = ORCL)  
     )  
   )  
 
 MYORCL =  
   (DESCRIPTION =  
     (ADDRESS_LIST =  
       (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.100)(PORT = 1521))  
     )  
     (CONNECT_DATA =  
       (SERVICE_NAME = myorcl)  
     )  
   )  

Table:

create table TEST_ORALOB  
 (  
   ID     VARCHAR2(20),  
   TSBLOB BLOB not null,  
   TSCLOB CLOB not null  
 ) 

测试代码:

package lavasoft.oralob.common;  
 
import oracle.sql.BLOB;  
 
import java.io.*;  
import java.sql.*;  
 
/**  
 * JDBC读写Oracle10g的CLOB、BLOB  
 *  
 */  
public class TestOraLob {  
 
     public static void main(String[] args) {  
         insertBlob();  
         queryBlob();  
     }  
 
     public static void insertBlob() {  
         Connection conn = DBToolkit.getConnection();  
         PreparedStatement ps = null;  
         try {  
             String sql = "insert into test_oralob (ID, TSBLOB, TSCLOB) values (?, ?, ?)";  
             ps = conn.prepareStatement(sql);  
             ps.setString(1, "100");  
             //设置二进制BLOB参数  
             File file_blob = new File("C:\\a.jpg");  
             InputStream in = new BufferedInputStream(new FileInputStream(file_blob));  
             ps.setBinaryStream(2, in, (int) file_blob.length());  
             //设置二进制CLOB参数  
             File file_clob = new File("c:\\a.txt");  
             InputStreamReader reader = new InputStreamReader(new FileInputStream(file_clob));  
             ps.setCharacterStream(3, reader, (int) file_clob.length());  
             ps.executeUpdate();  
             in.close();  
         } catch (IOException e) {  
             e.printStackTrace();  
         } catch (SQLException e) {  
             e.printStackTrace();  
         } finally {  
             DBToolkit.closeConnection(conn);  
         }  
     }  
 
     public static void queryBlob() {  
         Connection conn = DBToolkit.getConnection();  
         PreparedStatement ps = null;  
         Statement stmt = null;  
         ResultSet rs = null;  
         try {  
             String sql = "select TSBLOB from TEST_ORALOB where id ='100'";  
             stmt = conn.createStatement();  
             rs = stmt.executeQuery(sql);  
             if (rs.next()) {  
                 //读取Oracle的BLOB字段  
                 InputStream in = rs.getBinaryStream(1);  
                 File file = new File("c:\\a1.jpg");  
                 OutputStream out = new BufferedOutputStream(new FileOutputStream(file));  
                 byte[] buff1 = new byte[1024];  
                 for (int i = 0; (i = in.read(buff1)) > 0;) {  
                     out.write(buff1, 0, i);  
                 }  
                 out.flush();  
                 out.close();  
                 in.close();  
                 //读取Oracle的CLOB字段  
                 char[] buff2 = new char[1024];  
                 File file_clob = new File("c:\\a1.txt");  
                 OutputStreamWriter writer = new OutputStreamWriter(new FileOutputStream(file_clob));  
                 Reader reader = rs.getCharacterStream(1);  
                 for (int i = 0; (i = reader.read(buff2)) > 0;) {  
                     writer.write(buff2, 0, i);  
                 }  
                 writer.flush();  
                 writer.close();  
                 reader.close();  
             }  
             rs.close();  
             stmt.close();  
         } catch (IOException e) {  
             e.printStackTrace();  
         } catch (SQLException e) {  
             e.printStackTrace();  
         } finally {  
             DBToolkit.closeConnection(conn);  
         }  
     }  
 } 

注:如果是具体的字符串写入CLOB字段,简化写法:

//设置二进制CLOB参数   
 String xxx = "abcdefg";  
 ps.setCharacterStream(3, new StringReader(xxx), xxx.getBytes("GBK").length);   
 ps.executeUpdate();   
 in.close(); 

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持,如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

 类似资料:
  • 本文向大家介绍Spring jdbc中数据库操作对象化模型的实例详解,包括了Spring jdbc中数据库操作对象化模型的实例详解的使用技巧和注意事项,需要的朋友参考一下 Spring jdbc中数据库操作对象化模型的实例详解 Spring Jdbc数据库操作对象化  使用面向对象方式表示关系数据库的操作,实现一个线程安全可复用的对象模型,其顶级父类接口RdbmsOperation.  SqlOp

  • 问题内容: 假设我要避免在JDBC中使用绑定变量,而要使用“ ad-hoc”语句运行SQL,例如: 是否有任何内联BLOB数据类型的约定/ JDBC转义语法?我知道H2具有以下语法: 但这不是标准。有什么一般的解决方案吗?注意,我对通用方法感兴趣。我知道这可能会非常低效。 问题答案: 可能没有JDBC转义语法,因此我进行了一些搜索,找到并成功测试了以下内容: SQL Server,Sybase A

  • 本文向大家介绍Oracle的CLOB大数据字段类型操作方法,包括了Oracle的CLOB大数据字段类型操作方法的使用技巧和注意事项,需要的朋友参考一下 一、Oracle中的varchar2类型 我们在Oracle数据库存储的字符数据一般是用VARCHAR2。VARCHAR2既分PL/SQL Data Types中的变量类型,也分Oracle Database中的字段类型,不同场景的最大长度不同。

  • 本文向大家介绍python3的数据类型及数据类型转换实例详解,包括了python3的数据类型及数据类型转换实例详解的使用技巧和注意事项,需要的朋友参考一下 之前介绍过python开发工具Jupyter的使用,今天继续讲解python的数据类型,python中有整型、浮点型、字符串、布尔类型,我们重点介绍布尔类型的运算,以及不同数据类型之间的转换。使用Jupyter运行的时候有两个快捷键,Shift

  • 主要内容:1 Redis List,2 List实现队列,3 List实现栈,4 上限链表,5 阻塞队列,6 元素原子移动,6.1 可靠队列,6.2 循环队列,7 自动创建和删除key详细介绍了Redis的List类型的常见命令和应用方式。 1 Redis List Redis 的List实际上相当于Java 语言中的 LinkedList,即双向链表,这意味着Redis List支持常量时间插入和删除靠近头部和尾部的元素,即使插入了数百万个条目,时间复杂度为 O(1)。访问元素在列表的端点附近

  • 问题内容: 我正在寻找有关BLOB和CLOB数据的真正好的解释。我正在寻找用通俗易懂的英语进行解释的伟大作品。 问题答案: BLOB(二进制大对象)存储二进制文件:图片,文本,音频文件,Word文档等。人眼无法读取的任何内容。您无法通过SQL * Plus选择它们。 CLOB(字符大对象)存储字符数据。它们通常用于存储XML文档,JSON或仅大块格式化或未格式化的文本。