I have a java class that generates a PDF file to a folder in my computer. I have managed to connect this class to a link on a web application and when i click this link it generates the pdf and writes it to the folder on my computer. I would want to change this and have the link send the pdf to the browser instead. How can i do this? The class does not use any HttpRequests or similar and the link isnt a hypertext link atm. Im looking for the most straight forward way to send a pdf to the browser.
|
|
response.setContentType("application/pdf"); response.setHeader("Content-Disposition", "attachment; filename=path/to/file.pdf"); |
|||
|
|
|
i print it (any kind of file) to the response stream from a byte array, inside a servlet
|
|||
|
|
|
There are several ways to do that:
|
||||
|
|
|
You should be able to write the pdf to a stream, you can pass it the output stream from your response. |
|||
|
|