JAVA中批量下载文件,将下载多个文件打包成zip文件下载。

这篇博客介绍如何在Java中实现批量下载多个文件,并将这些文件压缩成ZIP格式供用户下载。通过示例代码,讲解了文件的读取、 ZIP归档的创建以及HTTP响应的设置,帮助开发者理解这一实用功能的实现过程。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

 /**   * 文件下载
* @param request
* @param response
* @param filePath 文件路径
* @param filename 下载时文件名称
*/
    public static void downLoadFile(HttpServletRequest request,HttpServletResponse response,String filePath,String filename){
        try {
            File file=new File(filePath);
// 先去掉文件名称中的空格,然后转换编码格式为utf-8,保证不出现乱码,这个文件名称 用于浏览器的下载框中自动显示的文件名
            String userAgent =request.getHeader("User-Agent");
            if(userAgent.contains("MSIE")||userAgent.contains("Trident")){
                filename= java.net.URLEncoder.encode(filename,"UTF-8");
            }else{
                filename=new String(filename.getBytes("utf-8"),"iso8859-1");
            }
            response.addHeader("Content-Disposition", "attachment;filename=" +filename );
//response.setContentType("application/vnd.ms-excel");
            response.setContentType("multipart/form-data");
            byte[] b = new byte[1024];
            int len=0;
            FileInputStream fs=new FileInputStream(file);
            PrintWriter writer = response.getWriter();
            while ((len = fs.read()) != -1) {
                writer.write(len);
            }
            fs.close();
            writer.close();
        } catch (FileNotFoundException e) {
// TODO Auto-generated catch block
            e.printStackTrace();
        } catch (IOException e) {
// TODO Auto-generated catch block
            e.printStackTrace();
        }
    }
    //JAVA中批量下载文件,将下载多个文件打包成zip文件下载。
    //批量文件下载(将多个文件打包成zip包下载)
    @RequestMapping(value = "/downloadzipss/{attachIds}", method = {RequestMethod.POST, RequestMethod.GET})
    public  void batchDownLoadFile(@PathVariable String attachIds,HttpServletRequest request,HttpServletResponse response,String filename,String[] filepath,String[] documentname,String loginname){

        List<String> attachId = Arrays.asList(attachIds.split(","));
        List<Long> attachs = new ArrayList<Long>();
        attachId.forEach(it->{
            attachs.add(Long.valueOf(it));
        });
        List<CuxFndAttachmentDomain> cuxFndAttachmentList =cuxFndAttachmentService.findAttachmentByIds(attachs);
        byte[] buffer = new byte[1024];
        Date date=new Date();
        //生成zip文件存放位置
        String path = diskPath;
        String strZipPath = diskPath +"/"+date.getTime()+".zip";
        File file=new File(diskPath);
        if(!file.isDirectory() && !file.exists()){
            //创建单层目录
            // f.mkdir();
            // 创建多层目录
            file.mkdirs();
        }
        try {
            ZipOutputStream out = new ZipOutputStream(new FileOutputStream(strZipPath));
            for (CuxFndAttachment attach:cuxFndAttachmentList){
                String storageDomain =  attach.getAttachStorageDomain();
                String fileName = attach.getAttachName();
                if(ZHIYUAN_OA.equals(storageDomain)){
                    String attachZhiyuanOaId = attach.getAttachZhiyuanOaId();
                    InputStream inputStream = FlowFileUpDown.FileDw(attachZhiyuanOaId);
                    out.putNextEntry(new ZipEntry(fileName));
                    //设置压缩文件内的字符编码,不然会变成乱码
                    out.setEncoding("GBK");
                    int len;
                    // 读入需要下载的文件的内容,打包到zip文件
                    while ((len = inputStream.read(buffer)) > 0) {
                        out.write(buffer, 0, len);
                    }
                    out.closeEntry();
                }
            }
            out.close();
           // downLoadFile(request, response, strZipPath, strZipPath);
            // 5.设置下载下载头
            SimpleDateFormat format = new SimpleDateFormat("yyyyMMdd");
            String filenames = URLEncoder.encode("批量下载文件" + format.format(Calendar.getInstance().getTime()) + ".zip", "UTF-8");
            response.setHeader("Content-Disposition", "attachment; fileName=" + filenames);
            response.setContentType("application/octet-stream; charset=utf-8");
            FileInputStream fileInputStream = null;
            fileInputStream = new FileInputStream(strZipPath);
             //下载文件
            FileCopyUtils.copy(fileInputStream, response.getOutputStream());
            File temp=new File(strZipPath);
            if(temp.exists()){
                temp.delete();
            }
        } catch (Exception e) {
            System.out.println("文件下载错误");
        }
    }

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值