java - 将图像从客户端电脑复制到 BLOB(又名 Oracle 中的 Java 函数)

标签 java oracle blob java-stored-procedures

过去两天我一直被这个问题困扰。我已经将 Java 函数存储在 Oracle 系统中,该函数应该从本地驱动器复制图像到远程数据库并将其存储在 BLOB 中 - 它称为 CopyBLOB,如下所示:

  import java.sql.*;  
  import oracle.sql.*;
  import java.io.*;

public class CopyBLOB 
{
  static int id;
  static String  fileName = null;
  static Connection conn = null;  

  public CopyBLOB(int idz, String f) 
  {
    id       = idz;
    fileName   = f;
  }

   public static void copy(int ident, String path) throws SQLException, FileNotFoundException 
   {
       CopyBLOB cpB = new CopyBLOB(ident, path);
       cpB.getConnection();
       cpB.callUpdate(id, fileName);
   }

    public void getConnection() throws SQLException
    {    
     DriverManager.registerDriver (new oracle.jdbc.OracleDriver());
     try 
     {     
       conn = DriverManager.getConnection("jdbc:oracle:thin:@oraserv.ms.mff.cuni.cz:1521:db", "xxx", "xxx");
     } 
     catch (SQLException sqlex) 
     {
         System.out.println("SQLException while getting db connection: "+sqlex);
         if (conn != null)  conn.close();
     } 
     catch (Exception ex) 
     {
         System.out.println("Exception while getting db connection: "+ex);
         if (conn != null) conn.close();
     }
    }

    public void callUpdate(int id, String file ) throws SQLException, FileNotFoundException 
    {
      CallableStatement cs = null;
      try 
      {  
        conn.setAutoCommit(false);
        File f = new File(file);
        FileInputStream fin = new FileInputStream(f);
        cs = (CallableStatement) conn.prepareCall( "begin add_image(?,?); end;" );
        cs.setInt(1, id );
        cs.setBinaryStream(2, fin, (int) f.length());
        cs.execute();
        conn.setAutoCommit(true);        
      } 
      catch ( SQLException sqlex ) 
      {
            System.out.println("SQLException in callUpdateUsingStream method of given status : " + sqlex.getMessage() );
      } 
      catch ( FileNotFoundException fnex ) 
      {
            System.out.println("FileNotFoundException in callUpdateUsingStream method of given status : " + fnex.getMessage() );
      } 
      finally 
      {
          try 
          {          
            if (cs != null)  cs.close();
            if (conn != null) conn.close();
          } 
          catch ( Exception ex ) 
          {
            System.out.println("Some exception in callUpdateUsingStream method of given status : " + ex.getMessage(  ) );
          }
      }
    }
}

包装函数在包“MyPackage”中定义如下:

  procedure image_adder( id varchar2, path varchar2 )  
  AS
    language java name 'CopyBLOB.copy(java.lang.String, java.lang.String)';

名为 image_add 的插入函数就这么简单:

procedure add_image( id numeric(10), pic blob)
  AS 

  BEGIN
    insert into pictures values (seq_pic.nextval, id, pic);
  END add_image;

现在的问题是:当我输入时

call MyPackage.image_adder(1, 'd:\samples\img.jpg');

我收到 ORA-29531 错误:CopyBLOB 类中没有方法复制。 你能帮我一下吗?

最佳答案

您的类中的方法具有以下签名:

public static void copy(int ident, String path)

但是在您的 Java 存储过程中您指定了此签名:

'CopyBLOB.copy(java.lang.String, java.lang.String)'

我认为如果您将第一个参数更改为 java,lang.Integer 您的问题应该会自行解决。您可能还应该更改 IMAGE_ADDER() 过程中 ID 参数的数据类型。

编辑

"Any ideas how to upload local files?"

数据库只能与其服务器可见的文件交互,这并非没有道理。一般来说,这限制了物理上位于同一机器上的文件和目录的问题,除非网络管理员映射了一些远程驱动器。

将文件从本地 PC 驱动器传输到服务器实际上是客户端,即应用程序问题,这不是数据库真正应该参与的事情。

我知道这不是你希望听到的。如果您确实想驱动从数据库上传文件,那么每当我们想通过网络传输文件时,机制都保持不变:FTP。 Tim Hall 在他的 Oracle-Base 站点上发布了 FTP 的 PL/SQL 实现。 Find out more .

"long as the file is smaler than 2000B (WTF?)"

这可疑地接近 BINARY CHAR 限制 (2000)。在旧版本的 Oracle 中,我们必须使用两步过程:插入占位符,然后发出更新。像这样的事情:

  procedure add_image( id numeric(10), pic blob) 
  AS       
  BEGIN 
      insert into pictures 
          values (seq_pic.nextval, id, empty_blob()); 
      update pictures 
      set col_pic = pic
      where id = seq_pic.currval;
  END add_image;

关于java - 将图像从客户端电脑复制到 BLOB(又名 Oracle 中的 Java 函数),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3029021/

相关文章:

oracle - 在为 Oracle Apex 提交表单时在成功消息中显示序列生成值

oracle - 如何在 Scala 中将一个类隐式转换为另一个类

sql - 关联 varchar 值

.net - 将 blob 存储在 SQL Server 中而不将 blob 读入内存

azure - 关于 BlobRequest.PutBlock 方法

java - 当外部对象用final声明时,为什么匿名内部类会调用外部对象

java - 使用 Play 进行用户管理!框架 2.0.3

java - 在 Java 9 中使用 VarHandle 的正确方法?

php - 在 Mysql 中通过 PHP 和 BLOB 动态图像

java - ArrayList 无法正确读入