spring webflux文件上传与下载

1、文件上传:

Controller:

java 复制代码
 @PostMapping("/import")
    public void importImage(@RequestPart("file") FilePart filePart) {
        imageService.importImage(filePart);
    }

Service:

java 复制代码
   public void importImage(FilePart filePart) {
        File saveFile = new File("/tmp/a.txt");
        if (!copyFile(filePart, saveFile)) {
            throw new OpsManagerException("文件保存失败!");
        }
    }
java 复制代码
public boolean copyFile(FilePart filePart, File tempFile) {
        try {
            if (tempFile.exists()) {
                tempFile.delete();
            }
            tempFile.createNewFile();
            AsynchronousFileChannel channel = AsynchronousFileChannel.open(tempFile.toPath(), StandardOpenOption.WRITE);
            AtomicBoolean copyFinish = new AtomicBoolean(false);
            DataBufferUtils.write(filePart.content(), channel, 0).doOnComplete(() -> copyFinish.set(true)).subscribe();
            AtomicInteger atomicInteger = new AtomicInteger(0);
            while (!copyFinish.get()) {
                Thread.sleep(5000);
                atomicInteger.addAndGet(1);
                if (atomicInteger.get() > 720) {
                    throw new OpsManagerException("文件过大");
                }
            }
            return true;
        } catch (Exception e) {
            log.error("save upload file error", e);
            return false;
        }
    }

2、文件下载:

Controller:

java 复制代码
  @GetMapping("/export")
    public Mono<Void> downloadFile(ServerHttpResponse response) {
        File file = new File("/tmp/workplace.zip");
        return TaskUtils.downloadFile(file, response);
    }

Service:

java 复制代码
public static Mono<Void> downloadFile(File file, ServerHttpResponse response) {
        try {
            response.getHeaders().set(HttpHeaders.CONTENT_DISPOSITION, "attachment;filename=" + URLEncoder.encode(file.getName(), "UTF-8"));
            response.getHeaders().setContentType(MediaType.APPLICATION_OCTET_STREAM);
            response.getHeaders().set(HttpHeaders.CONTENT_LENGTH, "" + file.length());
            Flux<DataBuffer> dataBufferFlux = Flux.create((FluxSink<DataBuffer> emitter) -> {
                InputStream in = null;
                try {
                    int bytesRead;
                    in = new FileInputStream(file);
                    byte[] buffer = new byte[1024 * 1024];
                    while ((bytesRead = in.read(buffer)) != -1) {
                        emitter.next(response.bufferFactory().wrap(Arrays.copyOf(buffer, bytesRead)));
                    }
                    emitter.complete();
                } catch (IOException e) {
                    emitter.error(e);
                } finally {
                    if (in != null) {
                        try {
                            in.close();
                        } catch (IOException e) {
                            e.printStackTrace();
                        }
                    }
                }
            });
            return response.writeAndFlushWith(Mono.just(dataBufferFlux));
        } catch (IOException ex) {
            logger.error("download file error!", ex);
            throw new RuntimeException("download file error!");
        }
    }

上面的文件下载,可能会由于垃圾回收不及时,而导致OOM,则可以使用以下代码;

java 复制代码
import org.springframework.core.io.Resource;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.http.codec.multipart.FilePart;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import reactor.core.publisher.Mono;

import java.nio.file.Path;
import java.nio.file.Paths;

@RestController
@RequestMapping("/files")
public class FileController {

    // 示例:将文件直接返回给客户端
    @GetMapping("/{filename}")
    public Mono<ResponseEntity<Resource>> downloadFile(@PathVariable String filename) {
        // 你可能需要将文件路径配置为适应你的环境
        String filePath = "/path/to/your/files/" + filename;
        Path path = Paths.get(filePath);
        Resource resource = new org.springframework.core.io.PathResource(path);

        return Mono.just(ResponseEntity.ok()
                .contentType(MediaType.APPLICATION_OCTET_STREAM)
                .body(resource));
    }

    // 示例:通过FormData方式上传文件,然后将文件直接返回给客户端
    @PostMapping("/upload")
    public Mono<ResponseEntity<Resource>> uploadFile(@RequestPart("file") FilePart filePart) {
        // 保存文件到服务器,这里简化为直接返回文件
        Resource resource = new InputStreamResource(filePart.content());

        return Mono.just(ResponseEntity.ok()
                .contentType(MediaType.APPLICATION_OCTET_STREAM)
                .body(resource));
    }
}

当然下载完后还可以回调:

java 复制代码
mono
    .doOnSuccess(value -> {
        // 在成功时执行回调
        System.out.println("Success: " + value);
    })
    .doOnError(error -> {
        // 在出错时执行回调
        System.err.println("Error: " + error.getMessage());
    })
    .subscribe();  // 订阅Mono
相关推荐
隐退山林2 分钟前
JavaEE:多线程初阶(一)
java·开发语言·jvm
最贪吃的虎8 分钟前
Redis其实并不是线程安全的
java·开发语言·数据库·redis·后端·缓存·lua
一勺菠萝丶10 分钟前
Java 后端想学 Vue,又想写浏览器插件?
java·前端·vue.js
xie_pin_an11 分钟前
C++ 类和对象全解析:从基础语法到高级特性
java·jvm·c++
武子康12 分钟前
大数据-208 岭回归与Lasso回归:区别、应用与选择指南
大数据·后端·机器学习
Tao____13 分钟前
企业级物联网平台
java·网络·物联网·mqtt·网络协议
山峰哥14 分钟前
数据库工程与SQL调优实战:从原理到案例的深度解析
java·数据库·sql·oracle·性能优化·编辑器
kaico201815 分钟前
远程调用组件openfeign
java·spring cloud
SunnyDays101116 分钟前
如何使用 JAVA 将 PDF 转换为 PPT:完整指南
java·开发语言·pdf转ppt
qq_124987075316 分钟前
基于springboot归家租房小程序的设计与实现(源码+论文+部署+安装)
java·大数据·spring boot·后端·小程序·毕业设计·计算机毕业设计