springMVC3學習(十一)--檔案上傳CommonsMultipartFile
阿新 • • 發佈:2018-11-09
使用springMVC提供的CommonsMultipartFile類進行讀取檔案
需要用到上傳檔案的兩個jar包 commons-logging.jar、commons-io-xxx.jar1、在spring配置檔案中配置檔案上傳解析器
[html] view plain copy
- <!-- 檔案上傳解析器 -->
- <bean
- <property name="defaultEncoding" value="utf-8"></property>
- <property name="maxUploadSize"
- <property name="maxInMemorySize" value="10960"></property>
- </bean>
2、檔案上傳頁面(index.jsp)
[html]
- <!-- method必須為post 及enctype屬性-->
- <form action="fileUpload.do" method="post" enctype="multipart/form-data">
- <input type="file" name="file">
- <input type="submit" value="上傳">
- </form>
3、FileController類
[java] view plain copy
- @Controller
- public class FileController{
- @RequestMapping("/fileUpload.do")
- public String fileUpload(@RequestParam("file") CommonsMultipartFile file,HttpServletRequest request,HttpServletResponse response){
- long startTime=System.currentTimeMillis(); //獲取開始時間
- if(!file.isEmpty()){
- try {
- //定義輸出流 將檔案儲存在D盤 file.getOriginalFilename()為獲得檔案的名字
- FileOutputStream os = new FileOutputStream("D:/"+file.getOriginalFilename());
- InputStream in = file.getInputStream();
- int b = 0;
- while((b=in.read())!=-1){ //讀取檔案
- os.write(b);
- }
- os.flush(); //關閉流
- in.close();
- os.close();
- } catch (FileNotFoundException e) {
- e.printStackTrace();
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- long endTime=System.currentTimeMillis(); //獲取結束時間
- System.out.println("上傳檔案共使用時間:"+(endTime-startTime));
- return "success";
- }
- }
上傳了一個3.54M的PDF檔案 共使用29132毫秒(以自己計算機實際為準)
上面計算了上傳檔案所使用時間,目的為了和下篇另一種上傳方法進行比較 看哪個效率更高
測試URL: http://localhost:8080/spring/
專案原始碼下載地址:http://download.csdn.net/detail/itmyhome/7447419