Hi !
I am running a web application that has to create a pdf file from its binary flow.
Here's what I have done :
File ftest = new File("temp.pdf"
FileWriter fw = new FileWriter(ftest);
fw.write(strTemp);
fw.close();
All this works perfectly... but when I call my PDF from a web browser, it doesn't start Acrobat Reader at all, but displays the binary flow.
How can I change this ?
Thanks,
Gaelle.
I am running a web application that has to create a pdf file from its binary flow.
Here's what I have done :
File ftest = new File("temp.pdf"
FileWriter fw = new FileWriter(ftest);
fw.write(strTemp);
fw.close();
All this works perfectly... but when I call my PDF from a web browser, it doesn't start Acrobat Reader at all, but displays the binary flow.
How can I change this ?
Thanks,
Gaelle.