Hi ,
I am trying to open the output of a
JSP in a PDF , but it does nt open ..
What i am trying is , get all jsp output in a
string and then write the string to output stream
i have some thing below in my code , but it doesnot work .
response.setContentType("application/pdf");
response.setHeader("Content-disposition","attachment; filename=Sample.pdf");
o = response.getOutputStream();
....
o.println(concatedString);
I tried converting my string into byte array and then write , still it doesnt work .
It says that file is not pdf supported and when i view the file source it is in HTML (the format which i wrote it) . DO i have to do anything in addition to convert into PDF . Please clarify as it is very critical.
With the same above steps and contecnt type as "application/word" , i coudl open the
word document.
thanks in advance.
Regards
SUnil.s