Springboot byte[] 转 MultipartFile ,InputStream 转 MultipartFile

之前有一篇:
Springboot Http文件的访问 Url 转换 MultipartFile ,File 转 MultipartFile_小目标青年的博客-CSDN博客

pom.xml

        <dependency>
            <groupId>org.apache.httpcomponents</groupId>
            <artifactId>httpcore</artifactId>
            <version>4.3.2</version>
        </dependency>

然后从 spring-test 的 org.springframework.mock.web 里面抽取一下它的好用的代码:
 

MyMultipartFile.java

import org.springframework.util.FileCopyUtils;
import org.springframework.web.multipart.MultipartFile;
import java.io.ByteArrayInputStream;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;


public class MyMultipartFile implements MultipartFile {

    private final String name;

    private String originalFilename;

    private String contentType;

    private final byte[] content;


    public MyMultipartFile(String name, byte[] content) {
        this(name, "", null, content);
    }


    public MyMultipartFile(String name, InputStream contentStream) throws IOException {
        this(name, "", null, FileCopyUtils.copyToByteArray(contentStream));
    }


    public MyMultipartFile(String name, String originalFilename, String contentType, byte[] content) {
        this.name = name;
        this.originalFilename = (originalFilename != null ? originalFilename : "");
        this.contentType = contentType;
        this.content = (content != null ? content : new byte[0]);
    }

    public MyMultipartFile(String name, String originalFilename, String contentType, InputStream contentStream)
            throws IOException {

        this(name, originalFilename, contentType, FileCopyUtils.copyToByteArray(contentStream));
    }

    @Override
    public String getName() {
        return this.name;
    }

    @Override
    public String getOriginalFilename() {
        return this.originalFilename;
    }

    @Override
    public String getContentType() {
        return this.contentType;
    }

    @Override
    public boolean isEmpty() {
        return (this.content.length == 0);
    }

    @Override
    public long getSize() {
        return this.content.length;
    }

    @Override
    public byte[] getBytes() throws IOException {
        return this.content;
    }

    @Override
    public InputStream getInputStream() throws IOException {
        return new ByteArrayInputStream(this.content);
    }

    @Override
    public void transferTo(File dest) throws IOException, IllegalStateException {
        FileCopyUtils.copy(this.content, dest);
    }
}

使用简例:
 

    @RequestMapping("/myTest")
    public void myTest()  {
        try {
            //伪代码示例,通过XXX把文件的 byte[] 拿出来
            byte[] fileBytes = ExcelUtil.exportMultiSheet();
            InputStream inputStream = new ByteArrayInputStream(fileBytes);
            MultipartFile file = new MyMultipartFile("test.xlsx","test.xlsx", ContentType.APPLICATION_OCTET_STREAM.toString(), inputStream);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

猜你喜欢

转载自blog.csdn.net/qq_35387940/article/details/126537208