I am submitting html form with encoding (multipart/form-data) I have following fields in Jsp Page First name Last Name file name to be uploaded
file is uploaded perfectly how to get first name and last name ? I want to save in database.
I am submitting html form with encoding (multipart/form-data) I have following fields in Jsp Page First name Last Name file name to be uploaded
file is uploaded perfectly how to get first name and last name ? I want to save in database.
You need to use the same API to extract the text fields as you've used to get the file content. Assuming that you're using the (de facto standard) Apache Commons FileUpload for this, then you need to act on whenever
FileItem#isFormField()
returnstrue
.See also: