欢迎来到代码驿站!

JAVA代码

当前位置:首页 > 软件编程 > JAVA代码

springboot实现多文件上传功能

时间:2022-11-15 09:47:51|栏目:JAVA代码|点击:

本文实现springboot的多文件上传,首先创建一个springboot项目,添加spring-boot-starter-web依赖。

然后在resources下的static文件夹下创建uploads.html文件,文件内容如下:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>多文件上传</title>
</head>
<body>
<form action="/uploads" method="post" enctype="multipart/form-data">
  <input type="file" name="uploadFiles" value="请选择文件" multiple>
  <input type="submit" value="上传">
</form>
</body>
</html>

然后编写Controller类

@RestController
public class FilesUploadController {
 
  SimpleDateFormat sdf = new SimpleDateFormat("yyyy/MM/dd/");
 
  @RequestMapping("/uploads")
  public String upload(MultipartFile[] uploadFiles, HttpServletRequest request) {
    List list = new ArrayList();//存储生成的访问路径
    if (uploadFiles.length > 0) {
      for (int i = 0; i < uploadFiles.length; i++) {
        MultipartFile uploadFile = uploadFiles[i];
        //设置上传文件的位置在该项目目录下的uploadFile文件夹下,并根据上传的文件日期,进行分类保存
        String realPath = request.getSession().getServletContext().getRealPath("uploadFile");
        String format = sdf.format(new Date());
        File folder = new File(realPath + format);
        if (!folder.isDirectory()) {
          folder.mkdirs();
        }
 
        String oldName = uploadFile.getOriginalFilename();
        System.out.println("oldName = " + oldName);
        String newName = UUID.randomUUID().toString() + oldName.
            substring(oldName.lastIndexOf("."), oldName.length());
        System.out.println("newName = " + newName);
        try {
          //保存文件
          uploadFile.transferTo(new File(folder, newName));
 
          //生成上传文件的访问路径
          String filePath = request.getScheme() + "://" + request.getServerName() + ":"+ request.getServerPort() + "/uploadFile" + format + newName;
          list.add(filePath);
        } catch (IOException e) {
          e.printStackTrace();
        }
      }
      return list.toString();
    } else if (uploadFiles.length == 0) {
      return "请选择文件";
    }
    return "上传失败";
  }
}

相比于单文件上传,这里就多了一个遍历的过程。

文件上传常见配置:

#是否开启文件上传支持,默认是true
spring.servlet.multipart.enabled=true 
#文件写入磁盘的阈值,默认是0
spring.servlet.multipart.file-size-threshold=0
#上传文件的临时保存位置
spring.servlet.multipart.location=D:\\upload
#单个文件的最大值,默认是1MB
spring.servlet.multipart.max-file-size=1MB
#多个文件上传时的总大小 值,默认是10MB
spring.servlet.multipart.max-request-size=10MB
#是否延迟解析,默认是false
spring.servlet.multipart.resolve-lazily=false

上一篇:关于使用jpa聚合函数遇到的问题

栏    目:JAVA代码

下一篇:mybatis的if判断integer问题

本文标题:springboot实现多文件上传功能

本文地址:http://www.codeinn.net/misctech/219074.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有