I am using servlets and JSP on tomcat. Is there any tag in HTML to upload and download files. Thanks
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35224
7
posted
0
For downloading, no special tag is needed - just use a regular link to the file. For uploading check out Jakarta Commons FileUpload (http://jakarta.apache.org/commons/fileupload/). It comes with examples.
Download is easy - just provide a link to the file. Upload you use a form with an enctype of "multipart/form-data". Have a search through this forum, we've talked about this many times before. You should be able to find tips/examples.