I have a requirement in which i need to process few data to generate a Id field and at the same time i need to upload a few images which needs to be done at the press of a single button.I mean to say both the data and image have to be processed(image uploaded in file server and data saved in database)at the same time.I am using apache commons to upload the files and in the process i have set the form type as multipart.The problem is I have a few parameters set in the request itself whch when extracted in the servlet are returning null.Please provide me some pointers as to how can i extract these parameters set in request in the servlet.Please help me ..

link|improve this question

54% accept rate
I need data and image to be uploaded at the same time – Sam Jul 13 '10 at 14:23
Please post some code – Yuval Adam Jul 13 '10 at 14:28
I am not able to extract parameters set in the request like String name =request.getParameter("name"); for instance is returning null – Sam Jul 13 '10 at 14:34
The form encoding type is set as multipart data – Sam Jul 13 '10 at 14:35
Someone please reply to this question – Sam Jul 13 '10 at 16:27
show 1 more comment
feedback

1 Answer

up vote 0 down vote accepted

Something like this helps you to extract the content :

DiskFileItemFactory factory = new DiskFileItemFactory();
ServletFileUpload fileUpload = new ServletFileUpload(factory);
List<FileItem> fileUploadItems = fileUpload.parseRequest((HttpServletRequest) request);
for (FileItem fileItem : fileUploadItems) {
    String fieldName = fileItem.getFieldName();
    String contentType = fileItem.getContentType();
    long size = fileItem.getSize();
    if (size < 1) {
        throw new FileUploadException("The submitted file must not be null!");
    }
    boolean equalFieldName = fieldName.equals(SOME_FIELD_NAME);
    if (!equalFieldName) {
        // do something
    }
    boolean equalContentType = contentType.equals(SOME_CONTENT);
    if (!equalContentType) {
        // do something
    }
    if (equalFieldName && equalContentType) {
         stream = fileItem.getInputStream();
         break;
    }

}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.