1. 程式人生 > >springMVC3學習(十一)--檔案上傳CommonsMultipartFile

springMVC3學習(十一)--檔案上傳CommonsMultipartFile

使用springMVC提供的CommonsMultipartFile類進行讀取檔案

需要用到上傳檔案的兩個jar包 commons-logging.jar、commons-io-xxx.jar

1、在spring配置檔案中配置檔案上傳解析器

[html]  view plain  copy   在CODE上檢視程式碼片 派生到我的程式碼片
  1. <!-- 檔案上傳解析器 -->  
  2. <bean
     id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">  
  3.     <property name="defaultEncoding" value="utf-8"></property>  
  4.     <property name="maxUploadSize"
     value="10485760000"></property><!-- 最大上傳檔案大小 -->  
  5.     <property name="maxInMemorySize" value="10960"></property>  
  6. </bean>  

2、檔案上傳頁面(index.jsp)

[html] 
view plain
 copy   在CODE上檢視程式碼片 派生到我的程式碼片
  1. <!-- method必須為post 及enctype屬性-->  
  2. <form action="fileUpload.do" method="post" enctype="multipart/form-data">  
  3.     <input type="file" name="file">  
  4.     <input type="submit" value="上傳">  
  5. </form>  

3、FileController類

[java]  view plain  copy   在CODE上檢視程式碼片 派生到我的程式碼片
  1. @Controller  
  2. public class FileController{  
  3.       
  4.     @RequestMapping("/fileUpload.do")  
  5.     public String fileUpload(@RequestParam("file") CommonsMultipartFile file,HttpServletRequest request,HttpServletResponse response){  
  6.         long startTime=System.currentTimeMillis();   //獲取開始時間  
  7.         if(!file.isEmpty()){  
  8.             try {  
  9.                 //定義輸出流 將檔案儲存在D盤    file.getOriginalFilename()為獲得檔案的名字   
  10.                 FileOutputStream os = new FileOutputStream("D:/"+file.getOriginalFilename());  
  11.                 InputStream in = file.getInputStream();  
  12.                 int b = 0;  
  13.                 while((b=in.read())!=-1){ //讀取檔案   
  14.                     os.write(b);  
  15.                 }  
  16.                 os.flush(); //關閉流   
  17.                 in.close();  
  18.                 os.close();  
  19.                   
  20.             } catch (FileNotFoundException e) {  
  21.                 e.printStackTrace();  
  22.             } catch (IOException e) {  
  23.                 e.printStackTrace();  
  24.             }  
  25.         }  
  26.         long endTime=System.currentTimeMillis(); //獲取結束時間  
  27.         System.out.println("上傳檔案共使用時間:"+(endTime-startTime));  
  28.         return "success";  
  29.     }  
  30. }  

上傳了一個3.54M的PDF檔案 共使用29132毫秒(以自己計算機實際為準)

上面計算了上傳檔案所使用時間,目的為了和下篇另一種上傳方法進行比較 看哪個效率更高


測試URL:  http://localhost:8080/spring/


專案原始碼下載地址:http://download.csdn.net/detail/itmyhome/7447419