JavaRanch » Java Forums »
Java »
Beginning Java
| Author |
Saving a PDF automatically
|
Benita Perkins
Greenhorn
Joined: Jul 18, 2008
Posts: 9
|
|
I am trying to save a pdf file to my server. When I use "res.setContentType(application/pdf);" it opens the "Save As" window for the user to save the file to their machine where I need it to go to the server....
|
 |
Steve Luke
Bartender
Joined: Jan 28, 2003
Posts: 3026
|
|
You shouldn't be using the response to save the file if you want the file saved to the server. The response is used to send data to the client. So since you want to save the file on the server use a FileOutputStream to the destination and save the contents to it rather than the response.
|
Steve
|
 |
Benita Perkins
Greenhorn
Joined: Jul 18, 2008
Posts: 9
|
|
so, I shouldn't be setting the MIME at all then? I have to edit someone else's code and they were a lot more advanced than I am. This is the code..... Could you take a look and let me know if the MIME should be set?
|
 |
 |
|
|
subject: Saving a PDF automatically
|
|
|
|