spring mvc实现文件上传与下载功能

本文实例为大家分享了spring mvc实现文件上传与下载功能的具体代码,供大家参考,具体内容如下

文件上传

在pom.xml中引入spring mvc以及commons-fileupload的相关jar

  
  
   org.springframework
   spring-webmvc
   4.3.13.RELEASE
  
  
  
  
   commons-fileupload
   commons-fileupload
   1.3.3
  

在springmvc.xml中加入文件上传的相关配置

  
  
   
   10485760 
   
  
  
   UTF-8
  
 

在jsp文件中加入form表单

文件描述:
请选择文件:

添加文件上传的方法

//上传文件会自动绑定到MultipartFile中
@RequestMapping(value="/upload",method=RequestMethod.POST)
public String upload(HttpServletRequest request,
  @RequestParam("description") String description,
  @RequestParam("file") MultipartFile file) throws Exception {
 
 //如果文件不为空,写入上传路径
 if(!file.isEmpty()) {
  //上传文件路径
  String path = request.getServletContext().getRealPath("/file/");
  //上传文件名
  String filename = file.getOriginalFilename();
  File filepath = new File(path,filename);
  //判断路径是否存在,如果不存在就创建一个
  if (!filepath.getParentFile().exists()) {
   filepath.getParentFile().mkdirs();
  }
  //将上传文件保存到一个目标文件当中
  file.transferTo(new File(path + File.separator + filename));
  return "success";
 } else {
  return "error";
 }
 
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

你可能感兴趣的:(spring mvc实现文件上传与下载功能)