SpringMVC multipart文件上传
一、介绍
spring内建的multipart支持网络程序文件上传。我们可以通过配置MultipartResolver来启动上传支持。它定义在org.springframework.web.multipart包中。spring是通过使用Commons FileUpload插件来完成MultipartResolver的。
默认情况下,spring不处理multipar的form信息,因为开发者默认会自己去处理这部分信息,当然我们可以随时打开这个支持。这样对于每一个请求,都会查看它是否包含multipart的信息,如果没有则按流程继续执行。如果发现有,就会交给已经被声明的MultipartResolver进行处理,然后我们就能像处理其他普通属性一样处理文件上传了。
二、使用MultipartResolver
下面的例子显示了如何使用CommonsMultipartResolver
- <bean id="multipartResolver"
- class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
- <!-- one of the properties available; the maximum file size in bytes -->
- <property name="maxUploadSize" value="100000"/>
- </bean>
当然,我们要把所需的jar包放到lib中, 就是commons-fileupload.jar.
三、处理一个文件上传的form
当MultipartResolver处理完成以后,请求被处理成和普通请求一样。下面是页面文件。
- <html>
- <head>
- <title>Upload a file please</title>
- </head>
- <body>
- <h1>Please upload a file</h1>
- <form method="post" action="/form" enctype="multipart/form-data">
- <input type="text" name="name"/>
- <input type="file" name="file"/>
- <input type="submit"/>
- </form>
- </body>
- </html>
下一步是创建一个controller来处理文件上传。controller也和其他的一样,除了在我们的方法参数中使用MultipartHttpServletRequest或者MultipartFile。
- @Controller
- public class FileUpoadController {
- @RequestMapping(value = "/form", method = RequestMethod.POST)
- public String handleFormUpload(@RequestParam("name") String name,
- @RequestParam("file") MultipartFile file) {
- if (!file.isEmpty()) {
- byte[] bytes = file.getBytes();
- // store the bytes somewhere
- return "redirect:uploadSuccess";
- } else {
- return "redirect:uploadFailure";
- }
- }
- }
最后,我们要声明我们的controller和multipar解析器
- <beans>
- <bean id="multipartResolver"
- class="org.springframework.web.multipart.commons.CommonsMultipartResolver"/>
- <!-- Declare explicitly, or use <context:annotation-config/> -->
- <bean id="fileUploadController" class="examples.FileUploadController"/>
- </beans>
--------------------------
如果你对java、swing、各种框架、javascript、css、linux、数据库编程等知识很感兴趣,或者正在从事这些工作,请加入我建的群:464696550