springmvc二十八:springmvc使用common-fileUpload实现文件上传
生活随笔
收集整理的这篇文章主要介绍了
springmvc二十八:springmvc使用common-fileUpload实现文件上传
小编觉得挺不错的,现在分享给大家,帮大家做个参考.
springmvcjar包 commons-fileupload-1.2.1,commons-io-1.3.2
前台:
<form action="hello" method="post" enctype="multipart/form-data"> <h1>使用spring mvc提供的类的方法上传文件</h1><input name="username" value="haha" /><input type="file" name="file" /><input type="submit" /></form>
配置:
<!-- 多部分文件上传 --><bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver"><property name="defaultEncoding" value="UTF-8"></property><property name="maxUploadSize" value="#{1024*1024*20}"></property></bean>
后台:
@RequestMapping("/hello")public String hello(@RequestParam("file") CommonsMultipartFile file) throws IllegalStateException, IOException{System.out.println(file.getName());System.out.println(file.getOriginalFilename());file.transferTo(new File("D:\\"+file.getOriginalFilename()));return "hello";}
总结
以上是生活随笔为你收集整理的springmvc二十八:springmvc使用common-fileUpload实现文件上传的全部内容,希望文章能够帮你解决所遇到的问题。
- 上一篇: springmvc二十七:springm
- 下一篇: springmvc二十九:拦截器