Uploading a file
From MyWiki
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>