java批量下载打成zip

本文介绍了一种使用Java进行批量文件下载,并将这些文件压缩成ZIP格式的方法。通过引入commons-lang3库,利用ZipOutputStream实现了文件的读取、压缩及输出流的创建。代码示例详细展示了如何遍历文件集合,将其逐个加入到ZIP文件中。

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

**

java批量下载打成zip

首先引入所需jar包

<dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
            <version>3.8</version>
</dependency>

传入下载流,打包文件的集合

 public static void generateZip(OutputStream os, List<File> files)  {
        ZipOutputStream out = null;
        try {
            byte[] buffer = new byte[1024];
            out = new ZipOutputStream(os);
            for (File file : files) {
                FileInputStream fis = new FileInputStream(file);
                out.putNextEntry(new ZipEntry(file.getName()));
                int len;
                while ((len = fis.read(buffer)) != -1) {
                    out.write(buffer, 0, len);
                }
                out.flush();
                out.closeEntry();
                fis.close();
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            if (out != null) {
                out.close();
            }
        }
    }

结束

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值