I found this example how to read binary file from PostgreSQL.
conn.setAutoCommit(false);
// Get the Large Object Manager to perform operations with
LargeObjectManager lobj = ((org.postgresql.PGConnection) conn).getLargeObjectAPI();
ps = conn.prepareStatement("SELECT FILE FROM KNOWLEDGEBASE_FILES WHERE ID = ?");
ps.setInt(1, 333);
ResultSet rs = ps.executeQuery();
while (rs.next())
{
// Open the large object for reading
long oid = rs.getLong(1);
LargeObject obj = lobj.open(oid, LargeObjectManager.READ);
// Read the data
byte buf[] = new byte[obj.size()];
obj.read(buf, 0, obj.size());
// Do something with the data read here
FileChannel rwChannel = new RandomAccessFile("License_Agreement.pdf", "rw").getChannel();
ByteBuffer wrBuf = rwChannel.map(FileChannel.MapMode.READ_WRITE, 0, buffer.length * number_of_lines);
for (int i = 0; i < obj.size(); i++)
{
wrBuf.put(obj);
}
// Close the object
obj.close();
}
rs.close();
ps.close();
// Finally, commit the transaction.
conn.commit();
How I can write the data into file using NIO?
At this line wrBuf.put(obj); I get error:
no suitable method found for put(LargeObject) method ByteBuffer.put(byte) is not applicable (argument mismatch; LargeObject cannot be converted to byte) method ByteBuffer.put(ByteBuffer) is not applicable (argument mismatch; LargeObject cannot be converted to ByteBuffer) method ByteBuffer.put(byte[]) is not applicable (argument mismatch; LargeObject cannot be converted to byte[])