5G以上大文件下载浏览器转圈圈(从“挂起”到404),最后失败

博客讲述了在项目中遇到大文件下载导致的性能问题,原有的下载功能无法处理超过几十M的文件,会出现请求挂起并最终返回404。作者通过引入缓存流(BufferedInputStream和BufferedOutputStream)重构了下载接口,解决了大文件下载的问题。同时提醒注意检查SpringBoot及Nginx的文件大小限制配置,确保下载功能的正常运行。
摘要由CSDN通过智能技术生成

项目初期说的是下载文件的大小大概就是几十M,没想到越来越大,还有十几个G的可能,之前写的下载功能直接就一直转圈圈,F12看到请求一直是挂起状态,持续了将近一分钟:
在这里插入图片描述
然后突然变成404:
在这里插入图片描述

整改之前的代码:

/**
     * 文件下载
     * @param response 请求响应
     * @param sourcePath 下载目标文件路径
     * @param name 下载后的文件名
     * @return 是否下载成功
     * @throws Exception
     */
    public static boolean down(HttpServletResponse response,String sourcePath, String name) throws Exception {
        OutputStream out = null;
        try {
            if(sourcePath != null){
                byte[] byteArray = null;
                response.setHeader("Content-Disposition", "attachment;filename=" + name + " ");
                InputStream input = new FileInputStream(new File(sourcePath+name));
                int lenth = input.available();
                byteArray = new byte[lenth];
                input.read(byteArray);
                input.close();
                out = response.getOutputStream();
                out.write(byteArray);
                out.flush();
                out.close();
            }
        } catch (Exception ex) {
            return false;
        } finally {
            if (out != null)
                out.close();
        }
        return true;
    }

使用缓存流(BufferedInputStream和BufferedOutputStream)对下载接口进行整改以满足大文件下载的需求:

/**
     * 使用缓存流进行超5G大文件下载
     * @param response 响应
     * @param path 要下载的文件的绝对路径
     * @throws Exception
     */
    private void downloadFile(HttpServletResponse response, String path) throws Exception {
        File file = new File(path);
        if (!file.isFile()) {
            throw new Exception("文件不存在");
        }
        String filename = path.substring(path.lastIndexOf(File.separator));
        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*100];
            int n = bufferedInputStream.read(buffer);
            while(n != -1){
            bufferedOutputStream.write(buffer);
            n = bufferedInputStream.read(buffer);
            }
            bufferedInputStream.close();
            bufferedOutputStream.close();
        } catch(Exception e){
            e.printStackTrace();
        }
    }

接口调整后别忘了检查以下配置:
①spring boot对下载文件大小限制的配置项;
②如果项目使用nginx,检查下nginx文件传输大小限制的配置项。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值