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二十九:拦截器