Uploading a file

From MyWiki
Revision as of 09:03, 29 August 2023 by George2 (Talk | contribs)

Jump to: navigation, search

Reference: https://www.tutorialspoint.com/jsp/jsp_file_uploading.htm
Needs commons-fileupload.x.x.jar and commons-io-x.x.jar download from https://commons.apache.org/fileupload/ and https://commons.apache.org/io/ Make sure the target directories are created

The upload form

<html>
   <head>
      <title>File Uploading Form</title>
   </head>
 
   <body>
      <h3>File Upload:</h3>
      Select a file to upload: <br />
      <form action = "UploadServlet" method = "post"
         enctype = "multipart/form-data">
         <input type = "file" name = "file" size = "50" />
         <br />
         <input type = "submit" value = "Upload File" />
      </form>
   </body>
 
</html>