SpringMVC 學習筆記(五)
47. 尚矽谷_佟剛_SpringMVC_文件上傳.avi
參看博客https://www.cnblogs.com/hanfeihanfei/p/7931758.html相當的經典
我是陌生人
關於SpringMVC的文件上傳
關於文件的上傳,之前寫過2篇文章,基於Struts2框架,下面給出文章鏈接:
《關於Struts2的文件上傳》:http://www.cnblogs.com/lichenwei/p/3927964.html
《關於Struts2的多文件上傳》:http://www.cnblogs.com/lichenwei/p/3928200.html
其實文件上傳的原理都是一樣的,基於SpringMVC的文件上傳實現要比Struts2要來得簡單許多。
好了,廢話不多說,直接切入主題吧,關於上傳原理不了解的朋友,可以輕戳上面2篇文章的鏈接。
1、萬變不離其宗,要實現文件的上傳需要對應的JAR包:
1、commons-fileupload-1.2.2.jar
2、commons-io-2.0.1.jar
2、要實現SpringMVC的文件上傳,需要配置一下文件:
<!-- SpringMVC上傳文件時,需要配置MultipartResolver處理器 --> <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver"> <property name="defaultEncoding" value="UTF-8" /> <!-- 指定所上傳文件的總大小不能超過200KB。註意maxUploadSize屬性的限制不是針對單個文件,而是所有文件的容量之和 --> <property name="maxUploadSize" value="-1" /> </bean> <!-- SpringMVC在超出上傳文件限制時,會拋出org.springframework.web.multipart.MaxUploadSizeExceededException--> <!-- 該異常是SpringMVC在檢查上傳的文件信息時拋出來的,而且此時還沒有進入到Controller方法中 --> <bean id="exceptionResolver" class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver"> <property name="exceptionMappings"> <props> <!-- 遇到MaxUploadSizeExceededException異常時,自動跳轉到XXX頁面 --> <prop key="org.springframework.web.multipart.MaxUploadSizeExceededException">跳轉XXX頁面</prop> </props> </property> </bean>
3、上傳頁面
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <% String path = request.getContextPath(); String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + path + "/"; %> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>上傳文件</title> </head> <body> <form action="<%=basePath%>upload.do" method="post" enctype="multipart/form-data"> <input type="hidden" name="tuzi" value="tuzi"> 上傳文件:<input type="file" name="uploadfile"> <input type="submit" value="上傳"> </form> </body> </html>
4、文件處理類:
package lcw.controller;
import java.io.File;
import java.io.IOException;
import javax.servlet.http.HttpServletRequest;
import org.apache.commons.io.FileUtils;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.multipart.commons.CommonsMultipartFile;
/**
*
* 文件上傳處理類
*
*/
@Controller
public class FileController {
//單文件上傳
@RequestMapping(value = "/upload.do")
public String queryFileData(
@RequestParam("uploadfile") CommonsMultipartFile file,
HttpServletRequest request) {
// MultipartFile是對當前上傳的文件的封裝,當要同時上傳多個文件時,可以給定多個MultipartFile參數(數組)
if (!file.isEmpty()) {
String type = file.getOriginalFilename().substring(
file.getOriginalFilename().indexOf("."));// 取文件格式後綴名
String filename = System.currentTimeMillis() + type;// 取當前時間戳作為文件名
String path = request.getSession().getServletContext()
.getRealPath("/upload/" + filename);// 存放位置
File destFile = new File(path);
try {
// FileUtils.copyInputStreamToFile()這個方法裏對IO進行了自動操作,不需要額外的再去關閉IO流
FileUtils
.copyInputStreamToFile(file.getInputStream(), destFile);// 復制臨時文件到指定目錄下
} catch (IOException e) {
e.printStackTrace();
}
return "redirect:upload_ok.jsp";
} else {
return "redirect:upload_error.jsp";
}
}
}
5、看一下實現效果圖:
6、再來看下關於多文件上傳,其實原理還是一樣,只不過是把CommonsMultipartFile類對象換成一個數組,然後用一個for循環去遍歷這個數組,並分別存入。
package lcw.controller; import java.io.File; import java.io.IOException; import javax.servlet.http.HttpServletRequest; import org.apache.commons.io.FileUtils; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.multipart.commons.CommonsMultipartFile; /** * * 文件上傳處理類 * */ @Controller public class FileController { //單文件上傳 @RequestMapping(value = "/upload.do") public String queryFileData( @RequestParam("uploadfile") CommonsMultipartFile file, HttpServletRequest request) { // MultipartFile是對當前上傳的文件的封裝,當要同時上傳多個文件時,可以給定多個MultipartFile參數(數組) if (!file.isEmpty()) { String type = file.getOriginalFilename().substring( file.getOriginalFilename().indexOf("."));// 取文件格式後綴名 String filename = System.currentTimeMillis() + type;// 取當前時間戳作為文件名 String path = request.getSession().getServletContext() .getRealPath("/upload/" + filename);// 存放位置 File destFile = new File(path); try { // FileUtils.copyInputStreamToFile()這個方法裏對IO進行了自動操作,不需要額外的再去關閉IO流 FileUtils .copyInputStreamToFile(file.getInputStream(), destFile);// 復制臨時文件到指定目錄下 } catch (IOException e) { e.printStackTrace(); } return "redirect:upload_ok.jsp"; } else { return "redirect:upload_error.jsp"; } } //多文件上傳 @RequestMapping(value = "/uploads.do") public String queryFileDatas( @RequestParam("uploadfile") CommonsMultipartFile[] files, HttpServletRequest request) { if (files != null) { for (int i = 0; i < files.length; i++) { String type = files[i].getOriginalFilename().substring( files[i].getOriginalFilename().indexOf("."));// 取文件格式後綴名 String filename = System.currentTimeMillis() + type;// 取當前時間戳作為文件名 String path = request.getSession().getServletContext() .getRealPath("/upload/" + filename);// 存放位置 File destFile = new File(path); try { FileUtils.copyInputStreamToFile(files[i].getInputStream(), destFile);// 復制臨時文件到指定目錄下 } catch (IOException e) { e.printStackTrace(); } } return "redirect:upload_ok.jsp"; } else { return "redirect:upload_error.jsp"; } } }
我是陌生人
關於SpringMVC的文件上傳
關於文件的上傳,之前寫過2篇文章,基於Struts2框架,下面給出文章鏈接:
《關於Struts2的文件上傳》:http://www.cnblogs.com/lichenwei/p/3927964.html
《關於Struts2的多文件上傳》:http://www.cnblogs.com/lichenwei/p/3928200.html
其實文件上傳的原理都是一樣的,基於SpringMVC的文件上傳實現要比Struts2要來得簡單許多。
好了,廢話不多說,直接切入主題吧,關於上傳原理不了解的朋友,可以輕戳上面2篇文章的鏈接。
1、萬變不離其宗,要實現文件的上傳需要對應的JAR包:
1、commons-fileupload-1.2.2.jar
2、commons-io-2.0.1.jar
2、要實現SpringMVC的文件上傳,需要配置一下文件:
按 Ctrl+C 復制代碼 按 Ctrl+C 復制代碼
3、上傳頁面
按 Ctrl+C 復制代碼 按 Ctrl+C 復制代碼
4、文件處理類:
按 Ctrl+C 復制代碼 按 Ctrl+C 復制代碼
5、看一下實現效果圖:
6、再來看下關於多文件上傳,其實原理還是一樣,只不過是把CommonsMultipartFile類對象換成一個數組,然後用一個for循環去遍歷這個數組,並分別存入。
按 Ctrl+C 復制代碼 按 Ctrl+C 復制代碼
7、看下效果圖:
作者:Balla_兔子
出處:http://www.cnblogs.com/lichenwei/
本文版權歸作者和博客園共有,歡迎轉載,但未經作者同意必須保留此段聲明,且在文章頁面明顯位置給出原文鏈接。
正在看本人博客的這位童鞋,我看你氣度不凡,談吐間隱隱有王者之氣,日後必有一番作為!旁邊有“推薦”二字,你就順手把它點了吧,相得準,我分文不收;相不準,你也好回來找我!
SpringMVC 學習筆記(五)