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>
paul sun
Greenhorn
Joined: Dec 22, 2000
Posts: 28
posted
0
Get com.oreilly.servlet package to use multipart classes to serve your need.
calvinho
Greenhorn
Joined: Mar 11, 2001
Posts: 10
posted
0
Thanx Pual. I'm wondering if I can get an array of the parameter values as if I use String[] getParameterValues() in default form submission.
Frank Carver
Sheriff
Joined: Jan 07, 1999
Posts: 6913
posted
0
"calvinho", The Java Ranch has thousands of visitors every week, many with surprisingly similar names. To avoid confusion we have a naming convention, described at http://www.javaranch.com/name.jsp . We require names to have at least two words, separated by a space, and strongly recommend that you use your full real name. Please log in with a new name which meets the requirements. Thanks.