首页 > 代码库 > springmvc-文件上传

springmvc-文件上传

 1 在doc文档中搜索MultipartResolver  2  3 step1:在配置文件中增加对文件上传的配置 准备工作,准备一个表单并且表单的enctype="multipart/form-data" 4 因为springmvc使用的是commons-upload上传组件,所以要导入两个jar文件分别为commons-upload.ar commons-io.jar 5 <!-- 配置文件上传的resolver --> 6  <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver"> 7    <property name="defaultEncoding" value="http://www.mamicode.com/UTF-8"/> 8         <!-- 指定所上传文件的总大小不能超过200KB。注意maxUploadSize属性的限制不是针对单个文件,而是所有文件的容量之和 --> 9         <property name="maxUploadSize" value="http://www.mamicode.com/500000"/>10  </bean>11 12 step2:在一个方法中进行测试13 /**14   * post请求方式实现真正的添加15   * 使用bean validation16   * BindingResult br 必须在@valid后面17   * @return18   * @throws IOException19   */20  @RequestMapping(value=http://www.mamicode.com/{"/add"}, method=RequestMethod.POST)21  public String add(@Validated User user, BindingResult br,@RequestParam("attachments") MultipartFile[] attachments, HttpServletRequest req) throws IOException22  {23  24   if(br.hasErrors())25   {26    //出错27    return "user/add";28 29   //文件上传   }30   for(MultipartFile attachment : attachments)31   {32    //如果文件为空那么将跳过33    if(attachment.isEmpty()) continue;34    //上传单个文件使用MultipartFile可以上传一个文件如果要上传多个文件的话要使用数组35    //上传多个文件使用数组的方式,并且要在数组参数之前加一个@RequestParam(name),应为它不知道对应的类型 ,否者会抛出异常36    System.out.println(attachment.getName() + "-" + attachment.getOriginalFilename() + "-" + attachment.getContentType());37    //创建对应的文件38    String path = req.getSession().getServletContext().getRealPath("/upload");39    File file = new File(path);40    map.put(user.getUserName(), user);41    FileUtils.copyInputStreamToFile(attachment.getInputStream(), new File(path, attachment.getOriginalFilename()));42   }43   return "redirect:/user/list";44  }

 

springmvc-文件上传