Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am tring to create an image file from database on disk. I wrote the following code:

{
    oracle.sql.BLOB blob1 = (BLOB) rs.getBlob(1);

    //fillFilePath is file path 
    File blobFile   = new File(fillFilePath);
    String checkExe[]=fillFilePath.split("\\.");

    FileOutputStream  outStream  = new FileOutputStream(blobFile); 
    InputStream inStream   = blob1.getBinaryStream(); 

    int length  = -1; 
    int size    = blob1.getBufferSize(); 
    byte[]  buffer  = new byte[size]; 

    BufferedImage image = ImageIO.read( inStream );
    System.out.println("Inside image upload");

    System.out.println("Inside image jpg");
    ImageIO.write(image, "JPG", outStream);

But it is not working.

Please give me any suggestions?

share|improve this question
Do you get any exceptions? – Manjula Weerasinge Nov 30 '11 at 7:31
1  
What is in the blob? If it is a jpeg, then you don't need to use the ImageIO at all, but just write the bytes to disk. – Roger Lindsjö Nov 30 '11 at 7:57
5 questions and a 0% accept rate? This gives us no incentive to answer your questions. Accepting answers is important. See here: meta.stackoverflow.com/questions/5234/… – Gray Nov 30 '11 at 14:36

1 Answer

try:

        BLOB image = ((OracleResultSet) rs).getBLOB("image");            
        blobLength = image.length();
        chunkSize = image.getChunkSize();
        binaryBuffer = new byte[chunkSize];

        for (position = 1; position <= blobLength; position += chunkSize) 
        {                               
            bytesRead = image.getBytes(position, chunkSize, binaryBuffer);               
            outputFileOutputStream.write(binaryBuffer, 0, bytesRead);                
            totbytesRead += bytesRead;
            totbytesWritten += bytesRead;
        }
share|improve this answer
I tried above code data write to image file but it not privew that image . – arun Dec 1 '11 at 9:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.