不依赖驱动更新blob字段

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了不依赖驱动更新blob字段相关的知识,希望对你有一定的参考价值。

不依赖驱动更新blob字段,场景如下:

tomcat发布到weblogic上,使用weblogic的连接池,就抛错了,如下:

java.lang.ClassCastException: weblogic.jdbc.wrapper.Blob_oracle_sql_BLOB

开发代码如下:

oracle.sql.BLOB blob = (oracle.sql.BLOB) rs.getBlob("TRANSFERDATA");  
BufferedOutputStream bos = new BufferedOutputStream(blob.getBinaryOutputStream());  
bos.write(define.getBytes("GBK"));  

后来查了一下,原因是通过weblogic连接池取出的连接取出的blob对象是weblogic封装过的OracleThinBlob,而不是oracle.sql.BLOB。然后又看了一下OracleThinBlob的方法与oracle.sql.BLOB类似,所以采用了下面的写法,避免异常:

   Object obj = rs.getBlob("TRANSFERDATA");  
   Class clazz = obj.getClass();  
   Method method = clazz.getMethod("getBinaryOutputStream", new Class[]);  
   OutputStream os = (OutputStream)method.invoke(obj, new Object[]);  
   BufferedOutputStream bos = new BufferedOutputStream(os);  
   bos.write(define.getBytes("GBK"));  
 /**
     * 此方法用于执行对大对象进行操作的sql语句
     * 传入的参数:blob对象
     */
    public boolean execUpdateBlobSQL(String sql, String tJSONObj)
        PreparedStatement pstmt = null;
        ResultSet rs = null;
        //System.out.println("下面是预编译ExecSQL...");
        System.out.println("预编译ExecSQL执行时间:"+new java.util.Date()+"; ExecSQL : " + sql);
        if (!mflag)
            con = DBConnPool.getConnection();
        
        try
            con.setAutoCommit(false);//addbyefeng 关闭自动提交 
            pstmt = con.prepareStatement(StrTool.GBKToUnicode(sql));
            //循环传入的参数数据  将数组内的参数 赋值给 预编译sql
            rs = pstmt.executeQuery(sql);    
            while (rs.next())
               
                //注:此处很重要。得到oracle.sql.BLOB对象后反射转换为BufferedOutputStream,目的是不依赖驱动
                Object obj = rs.getBlob("TRANSFERDATA");
                Class<? extends Object> clazz = obj.getClass();
                Method method = clazz.getMethod("getBinaryOutputStream", new Class[]);
                OutputStream os = (OutputStream)method.invoke(obj, new Object[]);
                BufferedOutputStream outStream = new BufferedOutputStream(os);
                outStream.write(tJSONObj.getBytes("GBK"), 0, tJSONObj.getBytes("GBK").length);
                os.flush();
                outStream.flush();
                os.close();
                outStream.close();
               
            rs.close();
            pstmt.close();
            if (!mflag)
                con.commit();
                con.close();
            
        
        catch (Exception e)
            // @@错误处理
            System.out.println("### Error ExeSQL at execUpdateSQL: " + sql);
            CError.buildErr(this, e.toString(), mErrors);

            try
                if (pstmt != null)
                    //由于描述的问题,导致执行的sql错误百出,因此pstmt的关闭需要特殊处理
                    try
                        pstmt.close();
                    
                    catch (SQLException ex)
                        ex.printStackTrace();
                    
                    finally
                        try
                            System.out.println("Sql‘s bug is very big: " + sql);
                            pstmt.close();
                        
                        catch (SQLException ex)
                    
                
                if (!mflag)
                    con.rollback();
                    con.close();
                
            
            catch (SQLException ex)
                //在这个地方,有可能会没有关闭连接
                ex.printStackTrace();
                return false;
            
            return false;
        finally
            try 
                if (rs != null) 
                rs.close();
                
                if (pstmt!=null) 
                pstmt.close();
                
             catch (SQLException e) 
                e.printStackTrace();
            
        
        return true;
    
/**
     * 此方法用于执行对大对象进行操作的sql语句
     * 传入的参数:blob对象
     */
    public boolean execSetBlobDataSQL(String sql, String tJSONObj, String tColumn)
        PreparedStatement pstmt = null;
        ResultSet rs = null;
        //System.out.println("下面是预编译ExecSQL...");
        System.out.println("预编译ExecSQL执行时间:"+new java.util.Date()+"; ExecSQL : " + sql);
        if (!mflag)
            con = DBConnPool.getConnection();
        
        try
            con.setAutoCommit(false);//addbyefeng 关闭自动提交 
            pstmt = con.prepareStatement(StrTool.GBKToUnicode(sql));
            //循环传入的参数数据  将数组内的参数 赋值给 预编译sql
            rs = pstmt.executeQuery(sql);    
            while (rs.next())
               
                //注:此处很重要。得到oracle.sql.BLOB对象后反射转换为BufferedOutputStream,目的是不依赖驱动
                Object obj = rs.getBlob(tColumn);
                Class<? extends Object> clazz = obj.getClass();
                Method method = clazz.getMethod("getBinaryOutputStream", new Class[]);
                OutputStream os = (OutputStream)method.invoke(obj, new Object[]);
                BufferedOutputStream outStream = new BufferedOutputStream(os);
                outStream.write(tJSONObj.getBytes("GBK"), 0, tJSONObj.getBytes("GBK").length);
                os.flush();
                outStream.flush();
                os.close();
                outStream.close();
               
            rs.close();
            pstmt.close();
            if (!mflag)
                con.commit();
                con.close();
            
        
        catch (Exception e)
            // @@错误处理
            System.out.println("### Error ExeSQL at execUpdateSQL: " + sql);
            CError.buildErr(this, e.toString(), mErrors);

            try
                if (pstmt != null)
                    //由于描述的问题,导致执行的sql错误百出,因此pstmt的关闭需要特殊处理
                    try
                        pstmt.close();
                    
                    catch (SQLException ex)
                        ex.printStackTrace();
                    
                    finally
                        try
                            System.out.println("Sql‘s bug is very big: " + sql);
                            pstmt.close();
                        
                        catch (SQLException ex)
                    
                
                if (!mflag)
                    con.rollback();
                    con.close();
                
            
            catch (SQLException ex)
                //在这个地方,有可能会没有关闭连接
                ex.printStackTrace();
                return false;
            
            return false;
        finally
            try 
                if (rs != null) 
                rs.close();
                
                if (pstmt!=null) 
                pstmt.close();
                
             catch (SQLException e) 
                e.printStackTrace();
            
        
        return true;
    

以上是关于不依赖驱动更新blob字段的主要内容,如果未能解决你的问题,请参考以下文章

如何把含有BLOB字段的表导出成二进制文本文件

oracle 如何将字段类型varchar 改为blob 更改提示数据类型的变更无效

java 以二进制流的方式读取mysql 中的blob文件,并写入本地文件夹下

解决未能加载文件或程序集“Newtonsoft.Json ...."或它的某一个依赖项。找到的程序集清单定义与程序集引用不匹配。 (异常来自 HRESULT:0x80131040)(代码片段

sql 这些代码片段将演示如何逐步使用PolyBase。你应该有一个blob存储和存储秘密方便

如何使用官方 c# 驱动程序在 MongoDB 中使用 Update.Set 更新多个字段?