I am writing a
servlet that requires file upload. As the form type is multipart/form-data, how can I get other input fields in addition to the file? I've tried to use getParameterValues(), but seems that doesn't work.
The html code is something like
<form action="abc" enctype="multipart/form-data" method="post">
<input type="text" name="ID">
<input type="file" name="uploadFile">
</form>