从服务器下载文件到本地

第一种方法:
/**
     * 下载文件到本地
     * @param filePathArr path 文件路径
     *                    fileName 文件名
     * @param response
     * @throws IOException
     */
    public static void download(String[] filePathArr, HttpServletResponse response) throws IOException {
        File file = new File(filePathArr[0]+"\\"+filePathArr[1]);
        response.setContentType("application/octet-stream");
        response.setHeader("Content-disposition","attachment;fileName="+ URLEncoder.encode(filePathArr[1],"UTF-8"));
        BufferedInputStream bis = new BufferedInputStream(new FileInputStream(file));
        BufferedOutputStream bos = new BufferedOutputStream(response.getOutputStream());

        byte[] buff = new byte[2048];
        while(true){
            int bytesRead;
            if(-1 == (bytesRead = bis.read(buff))) break;
            bos.write(buff,0,bytesRead);
        }

        bis.close();
        bos.close();
    }
第二种方法:
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;

public static ResponseEntity<byte[]> download(String[] filePathArr, HttpServletResponse response) throws IOException {
        File file = new File(filePathArr[0]+"\\"+filePathArr[1]);
        HttpHeaders headers = new HttpHeaders();
        headers.setContentDispositionFormData("attachment", new String(filePathArr[1].getBytes("UTF-8"),"iso-8859-1"));
        //application/octet-stream : 二进制流数据(最常见的文件下载
        headers.setContentType(MediaType.APPLICATION_OCTET_STREAM);
        return new ResponseEntity<byte[]>(FileUtils.readFileToByteArray(file),
                headers, HttpStatus.CREATED);
    }

Content-Disposition属性有两种类型:inline 和 attachment
inline :将文件内容直接显示在页面
attachment:弹出对话框,让用户下载

欢迎关注我的微信公众号,会同步更新python、java、算法等相关内容!!!
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

柒然

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值