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

扫描二维码关注公众号,回复: 3996105 查看本文章

猜你喜欢

转载自blog.csdn.net/u011518709/article/details/51751041
今日推荐