IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> SpringBoot文件上传、下载和删除 -> 正文阅读

[Java知识库]SpringBoot文件上传、下载和删除

程序实现

1、POM文件

<properties>
        <java.version>1.8</java.version>
        <swagger.version>2.9.2</swagger.version>
        <swagger-models.version>1.5.22</swagger-models.version>
        <fastjson.version>1.2.76</fastjson.version>
    </properties>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
        </dependency>

        <dependency>
            <groupId>cn.hutool</groupId>
            <artifactId>hutool-all</artifactId>
            <version>5.7.9</version>
        </dependency>

        <!-- Swagger 依赖配置 -->
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger2</artifactId>
            <version>${swagger.version}</version>
            <exclusions>
                <exclusion>
                    <groupId>io.swagger</groupId>
                    <artifactId>swagger-models</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>io.swagger</groupId>
            <artifactId>swagger-models</artifactId>
            <version>${swagger-models.version}</version>
        </dependency>
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger-ui</artifactId>
            <version>${swagger.version}</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

2、application.yml

server:
  port: 8080

spring:
  mvc:
    view:
      prefix: classpath:/templates/
      suffix: .html

  servlet:
    multipart:
      max-file-size: 100MB
      max-request-size: 100MB
file:
  upload-path: F:/data/
  size: 52428800    # 50*1024*1024,文件大小<50M

3 、FileController

package com.study.fileoption.controller;

import com.study.fileoption.service.FileService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;

import javax.servlet.http.HttpServletResponse;

@RestController
@RequestMapping("/file")
@Api("文件操作")
public class FileController {

    @Autowired
    private FileService fileService;

    @ApiOperation("文件上传")
    @PostMapping("/upload")
    public String upload(@RequestParam("file") MultipartFile file) throws Exception {
        fileService.fileUpload(file);
        return "success";
    }

    @PostMapping("/download")
    @ApiOperation("文件下载")
    public String download(@RequestParam("fileName") String fileName, HttpServletResponse response) throws Exception {
        fileService.fileDownload(fileName,response);
        return "success";
    }

    @DeleteMapping("/delete")
    @ApiOperation("文件删除")
    public String delete(@RequestParam("fileName") String fileName) throws Exception {
        fileService.fileDelete(fileName);
        return "success";
    }
    
}

4、FileService

package com.study.fileoption.service;


import lombok.extern.slf4j.Slf4j;
import cn.hutool.core.io.FileUtil;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Service;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.multipart.MultipartFile;

import javax.servlet.http.HttpServletResponse;
import java.io.*;
import java.net.URLEncoder;
import java.util.Objects;

@Service
@Slf4j
public class FileService {

    @Value("${file.upload-path}")
    private  String filePath;

    @Value("${file.size}")
    private  Long fileSize;


    public String fileUpload(MultipartFile file) throws Exception {
        try {
            if (file.isEmpty()) {
                return "文件为空";
            }
            log.info(file.getOriginalFilename());

            // 判断上传文件大小
            if (file.getSize() >fileSize) {
                log.error("上传文件规定小于50MB");
                throw new Exception("上传文件大于50MB");
            }
            // 获取文件名
            String fileName = file.getOriginalFilename();
            log.info("文件名:" + fileName);
            // 获取文件的后缀名
            String suffixName = fileName.substring(fileName.lastIndexOf("."));
            log.info("文件后缀:" + suffixName);

            // 设置文件存储路径
            String path = filePath + fileName;
            File dest = new File(path);
            // 检测是否存在目录,不存在则创建
            if (!dest.getParentFile().exists()) {
                dest.getParentFile().mkdirs();
            }
            // 文件写入
            file.transferTo(dest);
            return "上传成功";
        } catch (Exception e) {
            log.error("上传失败: <{}>",e.getMessage(),e);
        }
        return "上传失败";
    }

    public void fileDownload(String fileName, HttpServletResponse response) throws Exception {
        //1、检查是否存在文件
        File file = new File(filePath + fileName);
        if (!file.exists()) {
            log.error(fileName+" is not exist!");
            throw new Exception("文件不存在");
        }

        //2、下载文件
        try {
            downloadFile(response, file);
        } catch (Exception e) {
            log.error("文件下载异常: <{}>", e.getMessage(), e);
            throw new Exception("文件下载失败");
        }
    }

    public String fileDelete(String fileName) throws Exception {
        File file = new File(filePath+fileName);
        if (!file.exists()) {
            log.error("文件不存在");
            throw new Exception("文件不存在");
        }
        try {
            if(file.delete()){
                return fileName;
            }
        } catch (Exception e) {
            log.error("文件删除异常: <{}>", e.getMessage(), e);
        }
        log.error("文件删除失败");
        throw new Exception("文件删除失败");
    }

    private void downloadFile(HttpServletResponse response, File file) throws Exception {
        if (file.exists()) {
            String filename = file.getName();

            byte[] buffer = new byte[1024];
            //输出流
            try (FileInputStream fis = new FileInputStream(file);
                 BufferedInputStream bis = new BufferedInputStream(fis);
                 OutputStream os = response.getOutputStream();) {
                response.setContentType("application/octet-stream");
                response.setHeader("content-type", "application/octet-stream");
                response.setHeader("Content-Disposition", "attachment;fileName=" + URLEncoder.encode(filename, "utf8"));
                int i = bis.read(buffer);
                while (i != -1) {
                    os.write(buffer);
                    i = bis.read(buffer);
                }
            } catch (Exception e) {
                throw new Exception("文件下载失败");
            }
        }
    }
}

5、SwaggerConfig

package com.study.fileoption.config;



import io.swagger.annotations.ApiOperation;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import springfox.documentation.builders.ApiInfoBuilder;
import springfox.documentation.builders.PathSelectors;
import springfox.documentation.builders.RequestHandlerSelectors;
import springfox.documentation.service.ApiInfo;
import springfox.documentation.spi.DocumentationType;
import springfox.documentation.spring.web.plugins.Docket;
import springfox.documentation.swagger2.annotations.EnableSwagger2;

@Configuration
@EnableSwagger2
public class SwaggerConfig {


    private Boolean swaggerEnable = true;

    public static String SWAGGER_TITLE="文件操作";
    public static String SWAGGER_VERSION="1.0";
    public final static String SWAGGER_URL="http://127.0.0.1:8080";

    /**
     *
     * 验证的页面http://127.0.0.1:8080/swagger-ui.html
     * @return
     */

    @Bean
    public Docket createRestApi() {

        return new Docket(DocumentationType.SWAGGER_2)
                .enable(swaggerEnable)
                .apiInfo(apiInfo())
                .select()
                .apis(RequestHandlerSelectors.withMethodAnnotation(ApiOperation.class))
                .paths(PathSelectors.any())
                .build();
    }

    private ApiInfo apiInfo() {
        return new ApiInfoBuilder()
                .title(SWAGGER_TITLE)
                .termsOfServiceUrl(SWAGGER_URL)
                .version(SWAGGER_VERSION)
                .build();
    }

}

测试

1、访问 http://localhost:8080/swagger-ui.html
在这里插入图片描述可对上传、下载、删除功能分别测试,均无异常。

  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2021-08-25 12:04:45  更:2021-08-25 12:05:15 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 9:09:57-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码