當(dāng)前位置:
首頁 >
前端技术
> javascript
>内容正文
javascript
Spring MVC文件上传
生活随笔
收集整理的這篇文章主要介紹了
Spring MVC文件上传
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
1.配置xml文件
1 <!-- 指定文件上傳解析 名字不能亂給 --> 2 <bean name="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver"> 3 <property name="defaultEncoding" value="utf-8" /> 4 <property name="maxUploadSize" value="9223372036854775807" /> 5 </bean>2.編寫代碼
1 @RequestMapping(value="flatform/app/appinfoaddsave") 2 public String appinfoaddsave(App_info app_info, MultipartFile a_logoPicPath, Model m, HttpSession session) throws IOException { 3 if (a_logoPicPath.getSize() > 1024*50) { 4 m.addAttribute("fileUploadError", "文件大小不能超過50kb!"); 5 return "jsp/developer/appinfoadd"; 6 } 7 String filename = a_logoPicPath.getOriginalFilename(); //文件名稱 8 String contextPath = session.getServletContext().getContextPath(); //相對(duì)路徑 9 String realPath = session.getServletContext().getRealPath("statics/uploadfiles"); //絕對(duì)路徑 10 String type = a_logoPicPath.getContentType(); //文件類型 11 File file = new File(realPath, filename); 12 if ("image/png".equals(type) || "image/jpg".equals(type) || "image/jpeg".equals(type)) { 13 a_logoPicPath.transferTo(file); //將圖片保存到本地 14 app_info.setLogoLocPath(realPath+"\\"+filename); 15 app_info.setLogoPicPath(contextPath+"/statics/uploadfiles/"+filename); 16 app_infoService.appinfoaddsave(app_info); 17 return "redirect:list"; 18 } else { 19 m.addAttribute("fileUploadError", "文件類型只能是jpg、jpeg、png!"); 20 return "jsp/developer/appinfoadd"; 21 } 22 }最后需要再jsp頁面中的form標(biāo)簽中加上?enctype="multipart/form-data"。
?
注意:jsp頁面中文件控件的name屬性和MultipartFile參數(shù)名稱要相同,否則spring mvc映射不到,文件自然接收不到。
如果名稱實(shí)在是不想寫成一樣的話,可以MultipartFile參數(shù)前加@RequestParam("控件的name屬性")來映射。
轉(zhuǎn)載于:https://www.cnblogs.com/gaofei-1/p/7436155.html
總結(jié)
以上是生活随笔為你收集整理的Spring MVC文件上传的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: P1121 环状最大两段子段和
- 下一篇: 201671010140. 2016-2