您好,登錄后才能下訂單哦!
一、簡述
一個javaWeb項目中,文件上傳功能幾乎是必不可少的,本人在項目開發中也時常會遇到,以前也沒怎么去理它,今天有空學習了一下這方面的知識,于是便將本人學到的SpringMVC中單文件與多文件上傳這部分知識做下筆記。
二、單文件上傳
1、頁面
這里以一個簡單的表單提交為例子,文件上傳需要將表單的提交方法設置為post,將enctype的值設置為"multipart/form-data"。
<form action="${pageContext.request.contextPath}/test/upload.do" method="post" enctype="multipart/form-data"> <input type="file" name="img"><br /> <input type="submit" name="提交"> </form>
2、控制器
在Controller的處理方法中,使用MultipartFile對象作為參數接收前端上傳過來的文件,具體說明請看代碼注釋。
@Controller @RequestMapping("/test") public class MyController { @RequestMapping(value = "/upload.do", method = RequestMethod.POST) // 這里的MultipartFile對象變量名跟表單中的file類型的input標簽的name相同,所以框架會自動用MultipartFile對象來接收上傳過來的文件,當然也可以使用@RequestParam("img")指定其對應的參數名稱 public String upload(MultipartFile img, HttpSession session) throws Exception { // 如果沒有文件上傳,MultipartFile也不會為null,可以通過調用getSize()方法獲取文件的大小來判斷是否有上傳文件 if (img.getSize() > 0) { // 得到項目在服務器的真實根路徑,如:/home/tomcat/webapp/項目名/images String path = session.getServletContext().getRealPath("images"); // 得到文件的原始名稱,如:美女.png String fileName = img.getOriginalFilename(); // 通過文件的原始名稱,可以對上傳文件類型做限制,如:只能上傳jpg和png的圖片文件 if (fileName.endsWith("jpg") || fileName.endsWith("png")) { File file = new File(path, fileName); img.transferTo(file); return "/success.jsp"; } } return "/error.jsp"; } }
3、springmvc.xml配置
使用MultipartFile對象接收前端上傳過來的文件,還需要在springmvc的配置文件中進行如下配置:
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"> ... <!-- 注意:CommonsMultipartResolver的id是固定不變的,一定是multipartResolver,不可修改 --> <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver"> <!-- 如果上傳后出現文件名中文亂碼可以使用該屬性解決 --> <property name="defaultEncoding" value="utf-8"/> <!-- 單位是字節,不設置默認不限制總的上傳文件大小,這里設置總的上傳文件大小不超過1M(1*1024*1024) --> <property name="maxUploadSize" value="1048576"/> <!-- 跟maxUploadSize差不多,不過maxUploadSizePerFile是限制每個上傳文件的大小,而maxUploadSize是限制總的上傳文件大小 --> <property name="maxUploadSizePerFile" value="1048576"/> </bean> <!-- 設置一個簡單的異常解析器,當文件上傳超過大小限制時跳轉 --> <bean class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver"> <property name="defaultErrorView" value="/error.jsp"/> </bean> </beans>
上面配置文件中的CommonsMultipartResolver下的屬性值配置不是必須的,你也可以全部不寫。到這里就可以實現單個文件上傳了,下面來看看多文件上傳。
三、多文件上傳
其實多文件上傳也很簡單,單文件上傳是在Controller的處理方法中使用MultipartFile對象作為參數接收前端上傳過來的文件,而多文件上傳則使用MultipartFile對象數組來接收。
1、頁面
該頁面中有幾個name值一樣的file類型的input標簽,其他跟單文件上傳的頁面沒差。
<form action="${pageContext.request.contextPath}/test/upload.do" method="post" enctype="multipart/form-data"> file 1 : <input type="file" name="imgs"><br /> file 2 : <input type="file" name="imgs"><br /> file 3 : <input type="file" name="imgs"><br /> <input type="submit" name="提交"> </form>
2、控制器
控制器中的處理方法使用MultipartFile[]數組作為接收參數,并不能直接使用,需要校正參數,具體說明請看代碼注釋。
@Controller @RequestMapping("/test") public class MyController { @RequestMapping(value = "/upload.do", method = RequestMethod.POST) // 這里的MultipartFile[] imgs表示前端頁面上傳過來的多個文件,imgs對應頁面中多個file類型的input標簽的name,但框架只會將一個文件封裝進一個MultipartFile對象, // 并不會將多個文件封裝進一個MultipartFile[]數組,直接使用會報[Lorg.springframework.web.multipart.MultipartFile;.<init>()錯誤, // 所以需要用@RequestParam校正參數(參數名與MultipartFile對象名一致),當然也可以這么寫:@RequestParam("imgs") MultipartFile[] files。 public String upload(@RequestParam MultipartFile[] imgs, HttpSession session) throws Exception { for (MultipartFile img : imgs) { if (img.getSize() > 0) { String path = session.getServletContext().getRealPath("images"); String fileName = img.getOriginalFilename(); if (fileName.endsWith("jpg") || fileName.endsWith("png")) { File file = new File(path, fileName); img.transferTo(file); } } } return "/success.jsp"; } }
同樣的,使用MultipartFile數組接收前端上傳過來的多個文件,也需要在springmvc的配置文件進行配置,具體配置與上述單文件上傳的springmvc.xml配置沒差,直接拷貝過來就行。這樣,就可以進行多文件上傳了。
四、多種文件上傳情景綜合
當然,項目開發中,場景可能并不是這么簡單,上述的多文件上傳是一個個文件選擇后一起上傳(即多個name相同的input標簽),那要是我項目中只要一個input標簽就可以一次性多個文件呢?又或者一個頁面中既要一個個選擇的多文件上傳,又要一次性選擇的多文件上傳,還要有單文件上傳呢?沒問題,MultipartFile[]通吃,代碼也很easy,下面直接上代碼。
1、頁面
這里的 “一次選擇多個文件的多文件上傳” 只是在input標簽中加上了multiple屬性而已。
<form action="${pageContext.request.contextPath}/test/upload.do" method="post" enctype="multipart/form-data"> 一次選擇多個文件的多文件上傳 : <br /> <input type="file" name="imgs1" multiple><br /> <br /> 一次選擇一個文件的多文件上傳 : <br /> <input type="file" name="imgs2"><br /> <input type="file" name="imgs2"><br /><br /> 單文件上傳 : <br /> <input type="file" name="imgs3"><br /><br /> <input type="submit" name="提交"> </form>
2、控制器
@Controller @RequestMapping("/test") public class MyController { @RequestMapping(value = "/upload.do", method = RequestMethod.POST) public String upload(@RequestParam MultipartFile[] imgs1,@RequestParam MultipartFile[] imgs2,@RequestParam MultipartFile[] imgs3, HttpSession session) throws Exception { String path = session.getServletContext().getRealPath("images"); for (MultipartFile img : imgs1) { uploadFile(path, img); } for (MultipartFile img : imgs2) { uploadFile(path, img); } for (MultipartFile img : imgs3) { uploadFile(path, img); } return "/success.jsp"; } private void uploadFile(String path, MultipartFile img) throws IOException { if (img.getSize() > 0) { String fileName = img.getOriginalFilename(); if (fileName.endsWith("jpg") || fileName.endsWith("png")) { File file = new File(path, fileName); img.transferTo(file); } } } }
MultipartFile[]就是如此強大,不管單個多個,邏輯處理一樣,所以建議在項目開發中使用MultipartFile[]作為文件的接收參數。
五、拓展
1、MultipartFile類常用的一些方法:
String getContentType()//獲取文件MIME類型 InputStream getInputStream()//獲取文件流 String getName() //獲取表單中文件組件的名字 String getOriginalFilename() //獲取上傳文件的原名 long getSize() //獲取文件的字節大小,單位byte boolean isEmpty() //是否為空 void transferTo(File dest)
2、CommonsMultipartResolver的屬性解析
六、注意
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。