3

我想使用 java 下载以 bytea 格式存储的文件。我没有超级用户权限。使用下面的代码,我下载了十六进制编码文件并将其转换为 pdf,但转换后的 pdf 已损坏,而如果我通过终端使用 \copy 功能(不能在 java 中使用)进行复制,下载过程可以顺利进行。

        String sql = "(SELECT encode(f,'hex') FROM test_pdf where id='2' LIMIT 1)";
        System.out.println(sql);

        CopyManager copyManager = new CopyManager((BaseConnection) conn);

        FileWriter filew = new FileWriter("/home/sourabh/image.hex");
        copyManager.copyOut("COPY "+sql+"  TO STDOUT ", filew );`

接着 :

xxd -p -r image.hex > image.pdf
4

1 回答 1

1

根据PostgreSQL JDBC 驱动程序文档中的示例,以下内容对我来说很好:

try (
        Connection conn = DriverManager.getConnection(
            "jdbc:postgresql://localhost/linkedDB?user=postgres&password=whatever");
        Statement st = conn.createStatement();
        ResultSet rs = st.executeQuery("SELECT f FROM test_pdf WHERE id='2'");
        FileOutputStream fos = new FileOutputStream("C:/Users/Gord/Desktop/retrieved.pdf")) {
    rs.next();
    byte[] fileBytes = rs.getBytes(1);
    fos.write(fileBytes);
} catch (Exception e) {
    e.printStackTrace(System.err);
}
于 2015-10-13T17:38:36.977 回答