aspose file tools
The moose likes Servlets and the fly likes Download document or image to server Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Servlets
Reply Bookmark "Download document or image to server" Watch "Download document or image to server" New topic
Author

Download document or image to server

Angela D'souza
Ranch Hand

Joined: Jan 16, 2002
Posts: 469
Hi,
I know about uploading document for on client side using enctype="multipart/form-data you can display browser button & using http post submit method you can upload document.
How can I download document or image file from server to user desktop using servlet or jsp or java classes?
Thanks,
Angela
amit mohanty
Greenhorn

Joined: May 07, 2003
Posts: 5
Hi, to download any file from server u give a hyper link to that particaular file.
For example u want to give a link file name x.pdf which is availabel in <server root directory>/file/download.
In ur HTML/JSP page write
<a href="http://<hostname>/file/download/x.pdf>
download x.pdf</a>
Instead of downloading if u want to show it in brouser u have to set mime type in JSP/SErvlet program.
If u hacve any more doubt on this, let me know.
 
I agree. Here's the link: http://jrebel.com/download
 
subject: Download document or image to server
 
Similar Threads
Hww to get a web browser display a tiff image generated dynamically by JSP
get information from TIFF files
Binary Data using AJAX
Namespace using Axis
Processing icon with simple jsp approach