I have pdf bytes[].I would like to use these bytes and create the pdf.I would like to store the generated pdf in local.I am not using any servlets for this process.Please let me know how we can create a pdf file with pdf bytes.
Thanks
siva
sivaprasad pasupulathi
Ranch Hand
Joined: Apr 21, 2009
Posts: 36
posted
0
This worked,hope this helps:
File someFile = new File(somefile);
FileOutputStream fos;
fos = new FileOutputStream(someFile);
fos.write(pdfBytes);
fos.flush();
fos.close();