display byte array of pdf in jsp
Hi All ,please give me your solution, thanks.
While displaying pdf from jsp , i am able to display some files properly but some times its showing currupted data when the size of file is more.
here is how i tried
response.setContentType("application/pdf");
OutputStream outs = response.getOutputStream();
outs.write(loDocumentDVO.getFileContents());
// loDocumentDVO.getFileContents() contains byte array of the pdf to display
outs.flush();
outs.close();
|