JAVA从数据库获取路径实现文件下载

入参filePath  可从数据库查询获取

需要封装此方法

public void downLoad(String filePath, HttpServletResponse response) throws Exception {

        File file = new File(filePath);
           //判断文件是否存在
        if(!file.exists()){
            log.error("getOutputStream--> file:{} is not exist!",filePath);
            throw new Exception("getOutputStream--> file:"+filePath+" is not exist!");
        }
        InputStream is = null;
        BufferedInputStream bis = null;
        OutputStream os = null;
        BufferedOutputStream bos = null;
        try{
            is = new FileInputStream(file);
            bis = new BufferedInputStream(is);
            byte[] temp = new byte[1024];
            int i=0;
            //设置响应的类型
            response.setContentType(MediaType.MULTIPART_FORM_DATA_VALUE);
            //设置响应的编码格式
            response.setCharacterEncoding("utf8");
            //设置响应头
            response.setHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode(file.getName(),"UTF-8"));
            response.setHeader("Pragma", "public");
            response.setHeader("Cache-Control", "no-store");
            response.addHeader("Cache-Control", "max-age=0");
            os = response.getOutputStream();
            bos = new BufferedOutputStream(os);
            while ((i=bis.read(temp))!=-1){
                bos.write(temp,0,i);
            }
            bos.flush();
        }catch (Exception e){
            throw e;
        }finally {
            closeStream(bos,os,bis,is);
        }

    }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值