>
> Hi friends, 
>
I commented that the problem, is solved.
I just had to read otherwise. 
This is the code

inputStream = response.getEntity().getContent();
            outputStream = new FileOutputStream(new File("d:/dev/xc3.pdf"));


            int read = 0;
            byte[] bytes = new byte[1024];


            while ((read = inputStream.read(bytes)) != -1) {
                outputStream.write(bytes, 0, read);
            }
        } catch (Exception ex) {
            System.out.println(ex);
        }         
        finally {
            if (inputStream != null) {
                try {
                    inputStream.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            if (outputStream != null) {
                try {
                    // outputStream.flush();
                    outputStream.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }       

I hope that it would be useful to someone.

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Community" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/dspace-community.
For more options, visit https://groups.google.com/d/optout.

Reply via email to