使用JDBC获取BLOB数据时出错

时间:2014-01-29 20:55:33

标签: java oracle jdbc blob

我写了以下代码: -

import java.sql.*;
import java.util.Properties;
import java.io.*;

public class Retrieving_Image {

    public static void main(String[] args) throws Exception{

        Properties p = new Properties();
        p.put("user", "system");
        p.put("password", "password");

        DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
        Connection con = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:xe",p);

        PreparedStatement pstmt = con.prepareStatement("select * from picture",ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE);            
        ResultSet rs = pstmt.executeQuery();

        rs.first();//retrieving only picture            
        Blob b = rs.getBlob(1);         
        byte arr[] = new byte[(int)b.length()];         
        arr = b.getBytes(1, (int)b.length());

        FileOutputStream fos = new FileOutputStream("result.jpg");
        fos.write(arr);                     
        fos.close();

    }
}

在上面的代码中,我试图检索一个位于结果集第一行的第一个索引中的图像,实际上结果集只有一行。但我收到以下错误: -

Exception in thread "main" java.lang.AbstractMethodError: oracle.jdbc.driver.ScrollableResultSet.getBlob(I)Ljava/sql/Blob;
at jdbc.Retrieving_Image.main(Retrieving_Image.java:24)

错误的陈述是: -

Blob b = rs.getBlob(1);

出于我的智慧。 如果有人能解释错误,将不胜感激。

2 个答案:

答案 0 :(得分:0)

你可以尝试一下:

((OracleResultSet) rs).getBlob(1);

答案 1 :(得分:0)

中选择“star”或“*”
"select * from picture"

您没有指定列顺序,因此,无法保证blob将成为ResultSet中的第一列。从select语句中删除星号,然后使用逗号分隔的列表重新尝试。然后,您将确定要在指定的索引处选择正确的数据类型。