我正在开发一个Spring Web应用程序,需要为我的一个页面实现一个简单的FileUpload。
JSP的页面包含以下代码片段,其中包含用于上载文件的上传字段。
<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>
此JSP的模型如下所示
public class EditMerchandiserModel(){
private MultipartFile file;
//getters and setters for all the properties
}
控制器中处理文件上载的代码如下所示
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();
}
}
我无法点击内部代码,因为它在文件中读取为空值。 为什么它没有将值绑定到字段?
答案 0 :(得分:4)
看起来您的文件输入框的名称为“file”,而它应该绑定的属性名称为“photo”(至少您试图使用“getPhoto()”来检索它.Spring很聪明,但它不那么聪明。:))