Problem with FileUpload - Null Value for Multipart File

你离开我真会死。 提交于 2020-01-05 05:37:08

问题


I am working on a Spring web application and need to implement a simple FileUpload for one of my pages.

The page for the JSP contains the following snippet of code which included an upload field for uploading the file.

<form:form commandName="editMemberInfoModelObj" method="post" enctype="multipart/form-data">
        <h1>Edit Member Information</h1>
        <table>
            //Other Form Input Fields ...
            <tr>
                <td>File</td>
                <td><input type="file" name="file"/></td>
            </tr>
            <tr>
                <td><input type="submit" value="Update Info"/></td>
            </tr>
        </table>
    </form:form>

The model for this JSP looks like the following

public class EditMerchandiserModel(){
        private MultipartFile file;

        //getters and setters for all the properties
}

The code in the controller that handles the file upload looks like the following

    if(model.getFile().isEmpty())  -->THROWING NULLPOINTER EXCEPTION HERE
    {
        MultipartFile file = model.getFile();
        String fileName = file.getOriginalFilename();
        String filePath = "/usr/local/" + fileName;
        FileOutputStream fos = new FileOutputStream(filePath);
         try 
             {

            fos.write(file.getBytes());
         } catch (IllegalStateException e) {
            System.out.println(e);

         }
         finally{
             fos.close();
         }
    }

I am unable to hit the inside code because it is reading in the file as a null value. Why is it not binding the value to the field?


回答1:


It looks like your file input box has the name "file" while the property it's supposed to bind to has the name "photo" (at least you're trying to retrieve it using "getPhoto()". Spring is smart, but it ain't that smart. :)



来源:https://stackoverflow.com/questions/3713831/problem-with-fileupload-null-value-for-multipart-file

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!