Does form with enctype="multipart/form-data" cause problems accessing a hidden field

19,192

Solution 1

The servlet parses the parameters by default using application/x-www-form-urlencoded encoding. The multipart/form-data encoding however isn't supported in servlets until Servlet 3.0. The getParameter() calls will all return null.

In Servlet 3.0, you should have used HttpServletRequest#getParts() instead to get all parts of a multipart/form-data request, including normal form fields. Prior to Servlet 3.0, you should have used Apache Commons FileUpload to parse multipart/form-data requests. See also the following answer for a detailed example of both approaches: How to upload files to server using JSP/Servlet?

Note that if you aren't using any <input type="file"> field at all, then you can just leave the encoding away from the <form>. It will then default to application/x-www-form-urlencoded.

Solution 2

As a workaround, you can also add the required hidden parameters as GET parameters in the form's action attribute:

<form name="UploadImage" enctype="multipart/form-data" method="post" action="UploadImage?imgUploadObjId=52">

    //rest of the form here

</form>

this will allow the request.getParameter("imgUploadObjId") call to work.

Solution 3

Indeed there is something different.

request.getParameter will only work for hardcoded URL parameters specified in action attribute of <form> element. In your case it does not contain any.

All other parameters will be incoded into the form itself, which you have to process by parsing HTTP request's input stream directly.

Fortunately, you are not the first and there are some good open-source libraries that take care of this.

I've been using Apache FileUpload. You create a parser and pass a request object to it and then iterate through different items. One of them will be your hidden field.

Solution 4

Not sure if this helps, but I have used multipart forms in jsp pages which are submitted to a struts servlet and these pages have hidden fields which are received in my Struts Action classes (wrapped in Struts ActionForm), so I don't think there is any hard stop here.

Have you tried receiving this value as String and seeing what actually comes there?

Solution 5

The multi-part encoding shouldn't affect hidden text fields. It is likely something else. Can you post more of the HTML/Servlet code?

Share:
19,192

Related videos on Youtube

Ankur
Author by

Ankur

A junior BA have some experience in the financial services industry. I do programming for my own personal projects hence the questions might sound trivial.

Updated on April 21, 2022

Comments

  • Ankur
    Ankur about 2 years

    I have created a hidden form element

    <form name="UploadImage" enctype="multipart/form-data" method="post" action="UploadImage">
        <label>
            </label>
        <input name="imgUploadObjId" id="imgUploadObjId" value="52" type="hidden">
    
        //rest of the form here
    
    </form>
    

    And I am trying to get the value with this line in a servlet (as I have done before):

    int objId = Integer.parseInt(request.getParameter("imgUploadObjId"));
    

    But I get this (line 33 is the line above):

    java.lang.NumberFormatException: null
    java.lang.Integer.parseInt(Unknown Source) java.lang.Integer.parseInt(Unknown Source) web.objects.UploadImage.doPost(UploadImage.java:33) javax.servlet.http.HttpServlet.service(HttpServlet.java:637) javax.servlet.http.HttpServlet.service(HttpServlet.java:717)

    Is there something different about a form with enctype="multipart/form-data"? Or can you see some other error.

  • Alexander Pogrebnyak
    Alexander Pogrebnyak about 14 years
    +1. For suggesting to leave out enctype attribute if file upload is not needed.