springboot 大文件下载记一次生产环境因SpringBoot大文件下载导致的OOM事故

1. 使用FileSystemResource,以文件系统的绝对路径的方式访问静态资源

FileSystemResource file= new FileSystemResource("c:\\xx\\xxx\\1.txt");

@GetMapping("/down")

public ResponseEntity<FileSystemResource> download(@RequestParam("uri") String uri) throws IOException {

    File file = new File(uri);

    if (!file.isFile()) {

        throw new ServiceException("文件不存在");

    }

String filename = FilenameUtils.getName(uri);

    HttpHeaders headers = new HttpHeaders();

    headers.add("Content-Disposition", "attachment;filename=" + URLEncoder.encode(filename, "UTF-8"));

    HttpStatus status = HttpStatus.OK;

    return new ResponseEntity<>(new FileSystemResource(file), headers, status);

}

2. 使用缓存流,边读边写

@GetMapping("/down")

public void download(@RequestParam("uri") String uri, HttpServletResponse response) {

    File file = new File(uri);

    if (!file.isFile()) {

        throw new ServiceException("文件不存在");

    }

    String filename = FilenameUtils.getName(uri);

    response.setHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode(filename, "UTF-8"));


    try (FileInputStream fileInputStream = new FileInputStream(file);

        BufferedInputStream bufferedInputStream = new BufferedInputStream(fileInputStream);

        BufferedOutputStream bufferedOutputStream = new BufferedOutputStream(response.getOutputStream())) {

        FileCopyUtils.copy(bufferedInputStream, bufferedOutputStream);

    } catch(Exception e){

    } finally {


    }

}

@GetMapping("/down")

public void download(@RequestParam("uri") String uri, HttpServletResponse response) {

    File file = new File(uri);

    if (!file.isFile()) {

        throw new ServiceException("文件不存在");

    }

    String filename = FilenameUtils.getName(uri);

    response.setHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode(filename, "UTF-8"));


    try (FileInputStream fileInputStream = new FileInputStream(file);

        BufferedInputStream bufferedInputStream = new BufferedInputStream(fileInputStream);

        BufferedOutputStream bufferedOutputStream = new BufferedOutputStream(response.getOutputStream())) {

        byte[] buffer_ = new byte[1024];

        int n = bufferedInputStream.read(buffer_);

        while(n != -1){

            bufferedOutputStream.write(buffer_);

            n = bufferedInputStream.read(buffer_);

        }

        bufferedInputStream.close();

        bufferedOutputStream.close();

    } catch(Exception e){

    } finally {


    }

}

3. 文件存储到oss或者是七牛云,绕过服务器下载等方式

参考:

https://my.oschina.net/pwh19920920/blog/4699776?tdsourcetag=s_pctim_aiomsg

————————————————

版权声明:本文为CSDN博主「shiboyuan0410」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。

原文链接:https://blog.csdn.net/shiboyuan0410/article/details/115209291

©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

友情链接更多精彩内容