1、首先導入jar包: 2、然後,在applicatinContext.xml中添加上傳和下載的配置文件,如下: 3、好了,最基礎的配置就好了,接下來jsp頁面:upload.jsp 4、Controller中對應的java代碼: 這樣就可以把網頁上選擇的圖片上傳上去了. 下載成功了! 5、文件下載 ...
1、首先導入jar包:
2、然後,在applicatinContext.xml中添加上傳和下載的配置文件,如下:
1 <!-- 文件上傳的配置 --> 2 <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver"> 3 <!-- 指定所上傳文件的總大小不能超過200KB。註意maxUploadSize屬性的限制不是針對單個文件,而是所有文件的容量之和 --> 4 <property name="maxUploadSize" value="200000"/> 5 </bean> 6 7 <!-- 該異常是SpringMVC在檢查上傳的文件信息時拋出來的,而且此時還沒有進入到Controller方法中 --> 8 <bean id="exceptionResolver" class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver"> 9 <property name="exceptionMappings"> 10 <props> 11 <!-- 遇到MaxUploadSizeExceededException異常時,自動跳轉到WebContent目錄下的error.jsp頁面 --> 12 <prop key="org.springframework.web.multipart.MaxUploadSizeExceededException">error</prop> 13 </props> 14 </property> 15 </bean>
3、好了,最基礎的配置就好了,接下來jsp頁面:upload.jsp
1 <form action="upload.do" method="post" enctype="multipart/form-data"> 2 文件1: <input type="file" name="myfiles"/><br/> 3 文件2: <input type="file" name="myfiles"/><br/> 4 文件3: <input type="file" name="myfiles"/><br/> 5 <input type="submit" value="上傳"> 6 </form>
4、Controller中對應的java代碼:
1 @RequestMapping("/upload.do") 2 public String upload(@RequestParam MultipartFile[] myfiles,HttpServletRequest request) throws IOException { 3 for(MultipartFile file : myfiles){ 4 //此處MultipartFile[]表明是多文件,如果是單文件MultipartFile就行了 5 if(file.isEmpty()){ 6 System.out.println("文件未上傳!"); 7 } 8 else{ 9 //得到上傳的文件名 10 String fileName = file.getOriginalFilename(); 11 //得到伺服器項目發佈運行所在地址 12 String path1 = request.getSession().getServletContext().getRealPath("image")+File.separator; 13 // 此處未使用UUID來生成唯一標識,用日期做為標識 14 String path = path1+ new SimpleDateFormat("yyyyMMddHHmmss").format(new Date())+ fileName; 15 //查看文件上傳路徑,方便查找 16 System.out.println(path); 17 //把文件上傳至path的路徑 18 File localFile = new File(path); 19 file.transferTo(localFile); 20 } 21 } 22 return "uploadSuccess"; 23 }
這樣就可以把網頁上選擇的圖片上傳上去了.
下載成功了!
5、文件下載download.jsp:此處為了測試,我直接把用戶名當作參數傳過去:
<a href="download.do?fileName=2016082312271111111.jpg">下載</a>
6、Controller:
@RequestMapping("/download") public String download(String fileName, HttpServletRequest request, HttpServletResponse response) { response.setCharacterEncoding("utf-8"); response.setContentType("multipart/form-data"); response.setHeader("Content-Disposition", "attachment;fileName=" + fileName); try { String path = request.getSession().getServletContext().getRealPath ("image")+File.separator; InputStream inputStream = new FileInputStream(new File(path + fileName)); OutputStream os = response.getOutputStream(); byte[] b = new byte[2048]; int length; while ((length = inputStream.read(b)) > 0) { os.write(b, 0, length); } // 這裡主要關閉。 os.close(); inputStream.close(); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } // 返回值要註意,要不然就出現下麵這句錯誤! //java+getOutputStream() has already been called for this response return null; }
註:本文參考鏈接:http://blog.csdn.net/qq_32953079/article/details/52290208