springboot实现单文件和多文件上传

本文实例为大家分享了springboot实现单文件/多文件上传的具体代码,供大家参考,具体内容如下

package com.heeexy.example.controller;

import com.alibaba.fastjson.JSONObject;
import com.heeexy.example.util.CommonUtil;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.multipart.MultipartHttpServletRequest;

import javax.servlet.http.HttpServletRequest;
import java.io.*;
import java.util.*;

@RestController
@RequestMapping("/common")
public class UploadController {
 //设置上传文件夹
 File uploadPath = null;

 //单文件上传
 @PostMapping("/upload")
 public JSONObject upload(@RequestParam(value = "file", required = false)MultipartFile file,HttpServletRequest request) throws Exception{
  //定义返回客户端json对象
  JSONObject returnData = new JSONObject();
  //定义处理流对象
  BufferedOutputStream out = null;

  //将request对象转成JSONObject对象
  JSONObject jsonObject = CommonUtil.request2Json(request);
  //验证必填字段
  CommonUtil.hasAllRequired(jsonObject,"user_id,equi_id,upload_type");

  //获取当前用户id
  String user_id = jsonObject.getString("user_id");
  //获取当前设备id
  String equi_id = jsonObject.getString("equi_id");
  //获取上传文件的类型 1:巡检 2:维保
  String upload_type = jsonObject.getString("upload_type");

  //判断上传文件类型并设置前置路径
  File uploadPath = null;
  String basePath = "/root/img";     //基础文件上传路径
  String inspection = "/inspection";    //巡检文件夹路径
  String maintenance = "/maintenance";   //维保文件夹路径

  switch (upload_type){
   case "1":
    uploadPath = new File(basePath+inspection);
    break;
   case "2":
    uploadPath = new File(basePath+maintenance);
    break;
   default:
    uploadPath = new File(basePath);
  }
  //判断服务器上传文件夹是否存在
  if(!uploadPath.exists()){
   uploadPath.mkdirs();
  }
  //判断上传的文件是否为空
  if (file!=null) {
   //获取上传文件后缀
   String houzhui = file.getOriginalFilename().split("\\.")[1];
   //拼接上传文件保存路径(当前用户id+设备id+时间戳.后缀名)
   File fil = new File(uploadPath+"/"+user_id+equi_id+new Date().getTime()+"."+houzhui);
   try {
    //将上传文件保存到服务器上传文件夹目录下
    out = new BufferedOutputStream(new FileOutputStream(fil));
    out.write(file.getBytes());
    out.flush();
    out.close();
    //返回上传文件的访问路径 getAbsolutePath()返回文件上传的绝对路径
    returnData.put("message",fil.getName());
   } catch (FileNotFoundException e) {
    e.printStackTrace();
    returnData.put("message", "文件上传失败:" + e.getMessage());
   } catch (IOException e) {
    e.printStackTrace();
    returnData.put("message", "文件上传失败:" + e.getMessage());
   }finally {
    //关闭处理流
    if(out!=null){out.close();}
   }
  } else {
   returnData.put("message", "文件上传失败,文件为空");
  }
  return CommonUtil.successJson(returnData);
 }

 //多文件上传
 @PostMapping("/batchUpload")
 public JSONObject handleFileUpload(HttpServletRequest request) throws Exception{
  //定义返回客户端json对象
  JSONObject returnData = new JSONObject();
  //定义处理流对象,处理文件上传
  BufferedOutputStream stream = null;
  //定义map存储返回结果集
  Map<String,String> returnfileMap = new HashMap<String, String>();

  //获取前端上传的文件列表
  List<MultipartFile> files = ((MultipartHttpServletRequest) request).getFiles("file");
  MultipartFile file = null;

  //将request对象转成JSONObject对象
  JSONObject jsonObject = CommonUtil.request2Json(request);
  //验证必填字段,用户id,设备id,上传文件类型
  CommonUtil.hasAllRequired(jsonObject,"user_id,equi_id,upload_type");

  //获取当前用户id
  String user_id = jsonObject.getString("user_id");
  //获取当前设备id
  String equi_id = jsonObject.getString("equi_id");
  //获取上传文件的类型 1:巡检 2:维保
  String upload_type = jsonObject.getString("upload_type");

  //判断上传文件类型并设置前置路径
  File uploadPath = null;
  String basePath = "/root/img"; //基础文件上传路径
  String inspection = "/inspection"; //巡检文件夹路径
  String maintenance = "/maintenance"; //维保文件夹路径

  switch (upload_type){
   case "1":
    uploadPath = new File(basePath+inspection);
    break;
   case "2":
    uploadPath = new File(basePath+maintenance);
    break;
   default:
    uploadPath = new File(basePath);
  }
  //判断服务器上传文件夹是否存在
  if(!uploadPath.exists()){
   uploadPath.mkdirs();
  }

  //遍历客户端上传文件列表
  for (int i = 0; i < files.size(); ++i) {
   //获取到每个文件
   file = files.get(i);
    try {
     //获取上传文件后缀
     String houzhui = file.getOriginalFilename().split("\\.")[1];
     //拼接上传文件保存在服务器的路径(当前用户id+设备id+时间戳.后缀名)
     File fil = new File(uploadPath+"/"+user_id+equi_id+new Date().getTime()+"."+houzhui);
     //将上传文件保存到服务器上传文件夹目录下
     byte[] bytes = file.getBytes();
     stream = new BufferedOutputStream(new FileOutputStream(fil));
     stream.write(bytes);
     stream.close();
     //每成功上传一个文件,将上传文件名作为key,服务器保存路径作为value存入returnfileMap中
     switch (upload_type){
      case "1":
       returnfileMap.put(file.getOriginalFilename(),inspection+"/"+fil.getName());
       break;
      case "2":
       returnfileMap.put(file.getOriginalFilename(),maintenance+"/"+fil.getName());
       break;
     }
    } catch (Exception e) {
     stream = null;
     //保存上传失败的文件信息,将上传文件名作为key,value值为"fail",存入returnfileMap中
     returnfileMap.put(file.getOriginalFilename(),"fail");
    }finally {
     //关闭处理流
     if(stream!=null){stream.close();}
    }
  }
  //返回returnfileMap集合到客户端
  returnData.put("message",returnfileMap);
  return CommonUtil.successJson(returnData);
  }
 }

单文件文件结果

多文件上传结果

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

(0)

相关推荐

  • SpringBoot后台实现文件上传下载

    SpringBoot后台如何实现文件上传下载? 最近做的一个项目涉及到文件上传与下载.前端上传采用百度webUploader插件.有关该插件的使用方法还在研究中,日后整理再记录.本文主要介绍SpringBoot后台对文件上传与下载的处理. 单文件上传 // 单文件上传 @RequestMapping(value = "/upload") @ResponseBody public String upload(@RequestParam("file") Multipar

  • springboot实现文件上传和下载功能

    spring boot 引入"约定大于配置"的概念,实现自动配置,节约了开发人员的开发成本,并且凭借其微服务架构的方式和较少的配置,一出来就占据大片开发人员的芳心.大部分的配置从开发人员可见变成了相对透明了,要想进一步熟悉还需要关注源码. 1.文件上传(前端页面): <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/lo

  • springboot整合vue实现上传下载文件

    springboot整合vue实现上传下载文件,供大家参考,具体内容如下 环境 springboot 1.5.x 完整代码下载:springboot整合vue实现上传下载 1.上传下载文件api文件 设置上传路径,如例子: private final static String rootPath = System.getProperty("user.home")+File.separator+fileDir+File.separator; api接口: 下载url示例:http://l

  • SpringBoot实现Excel文件批量上传导入数据库

    Spring boot + Spring data jpa + Thymeleaf 批量插入 + POI读取 + 文件上传 pom.xml: <!-- https://mvnrepository.com/artifact/org.apache.poi/poi --> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <versi

  • SpringBoot实现单文件上传

    SpringBoot实现单文件上传功能,供大家参考,具体内容如下 架构为springboot+thymeleaf,采用ajax方式提交 1. 页面testFile.html <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>测试文件上传</title> <script src="../static/jquery/jquery-2.

  • SpringBoot实现文件上传下载功能小结

    最近做的一个项目涉及到文件上传与下载.前端上传采用百度webUploader插件.有关该插件的使用方法还在研究中,日后整理再记录.本文主要介绍SpringBoot后台对文件上传与下载的处理. 单文件上传 // 单文件上传 @RequestMapping(value = "/upload") @ResponseBody public String upload(@RequestParam("file") MultipartFile file) { try { if (

  • SpringBoot 文件上传和下载的实现源码

    本篇文章介绍SpringBoot的上传和下载功能. 一.创建SpringBoot工程,添加依赖 compile("org.springframework.boot:spring-boot-starter-web") compile("org.springframework.boot:spring-boot-starter-thymeleaf") 工程目录为: Application.java 启动类 package hello; import org.springf

  • 详解SpringBoot文件上传下载和多文件上传(图文)

    最近在学习SpringBoot,以下是最近学习整理的实现文件上传下载的Java代码: 1.开发环境: IDEA15+ Maven+JDK1.8 2.新建一个maven工程: 3.工程框架 4.pom.xml文件依赖项 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation

  • springboot 中文件上传下载实例代码

    Spring Boot是由Pivotal团队提供的全新框架,其设计目的是用来简化新Spring应用的初始搭建以及开发过程.该框架使用了特定的方式来进行配置,从而使开发人员不再需要定义样板化的配置.通过这种方式,Spring Boot致力于在蓬勃发展的快速应用开发领域(rapid application development)成为领导者. Spring Boot特点 1. 创建独立的Spring应用程序 2. 嵌入的Tomcat,无需部署WAR文件 3. 简化Maven配置 4. 自动配置Spr

  • 详解SpringBoot下文件上传与下载的实现

    SpringBoot后台如何实现文件上传下载? 最近做的一个项目涉及到文件上传与下载.前端上传采用百度webUploader插件.有关该插件的使用方法还在研究中,日后整理再记录.本文主要介绍SpringBoot后台对文件上传与下载的处理. 单文件上传 / 单文件上传 @RequestMapping(value = "/upload") @ResponseBody public String upload(@RequestParam("file") Multipart

随机推荐