Java SpringBoot实现文件上传功能的示例代码

测试代码

pom.xml:



    4.0.0

    
        org.springframework.boot
        spring-boot-starter-parent
        2.6.2
    

    jar

    com.kaven
    springboot
    0.0.1-SNAPSHOT

    springboot
    springboot

    
        1.8
    

    
        
            org.springframework.boot
            spring-boot-starter-web
        
        
            org.projectlombok
            lombok
        
    

    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
    

application.properties(配置文件):

spring.servlet.multipart.max-file-size=500MB
spring.servlet.multipart.max-request-size=500MB

max-file-size:指定允许上传文件的最大大小,默认值为1MB。

max-request-size:指定允许multipart/form-data请求的最大大小,默认值为10MB。

上传接口:

package com.kaven.springboot.controller;

import org.apache.tomcat.util.http.fileupload.IOUtils;
import org.springframework.http.HttpStatus;
import org.springframework.util.StringUtils;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.multipart.MultipartFile;

import javax.servlet.http.HttpServletResponse;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;

@RestController
public class FilesController {

    @PostMapping(value="/upload", headers="content-type=multipart/form-data")
    public String upload(@RequestParam(value = "file") MultipartFile file,
                         HttpServletResponse response) throws IOException, InterruptedException {

        System.out.println("有文件上传请求进来了");
        FileOutputStream fileOutputStream = null;
        InputStream inputStream = null;

        try {
            // 上传文件是否存在
            if (file != null && !file.isEmpty()) {
                // 如果上传文件存在,获取它的原始文件名
                String fileName = file.getOriginalFilename();
                if (StringUtils.hasText(fileName)) {
                    // 将上传文件存储在服务器的E盘下(Windows)
                    java.io.File outFile = new java.io.File("E:\" + fileName);
                    // 基于outFile创建文件输出流实例
                    fileOutputStream = new FileOutputStream(outFile);
                    // 获取上传文件的输入流
                    inputStream = file.getInputStream();
                    /*
                    * 将字节从输入流复制到输出流
                    * 此方法在内部会缓冲输入,因此无需使用BufferedInputStream
                    * 大型流(超过2GB)将在复制完成后返回字节复制值-1 ,因为无法将正确的字节数作为int返回
                    * 对于大型流,需要使用copyLarge(InputStream, OutputStream)方法
                    * 参数:
                    * input – 要读取的InputStream
                    * output - 要写入的OutputStream
                    * */
                    IOUtils.copy(inputStream, fileOutputStream);
                }
            }
            else {
                // 文件不存在
                response.setStatus(HttpStatus.BAD_REQUEST.value());
                return "文件不存在";
            }
        } catch (Exception e) {
            // 文件上传错误
            e.printStackTrace();
            response.setStatus(HttpStatus.INTERNAL_SERVER_ERROR.value());
            return "文件上传错误";
        } finally {
            if (fileOutputStream != null) {
                fileOutputStream.flush();
                fileOutputStream.close();
            }
        }
        // 文件上传成功
        response.setStatus(HttpStatus.OK.value());
        return "文件上传成功";
    }
}

启动类:

package com.kaven.springboot;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class SpringbootApplication {

    public static void main(String[] args) {
        SpringApplication application = new SpringApplication(SpringbootApplication.class);
        application.run(args);
    }
}

使用Postman进行测试。

Java SpringBoot实现文件上传功能的示例代码_第1张图片

Java SpringBoot实现文件上传功能的示例代码_第2张图片

上传的文件是完整的,可以播放(视频文件)。

Java SpringBoot实现文件上传功能的示例代码_第3张图片

上传文件不存在。

Java SpringBoot实现文件上传功能的示例代码_第4张图片

控制台的输出。

Java SpringBoot实现文件上传功能的示例代码_第5张图片

到此这篇关于Java SpringBoot实现文件上传功能的示例代码的文章就介绍到这了,更多相关SpringBoot文件上传内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

你可能感兴趣的:(Java SpringBoot实现文件上传功能的示例代码)