java打包文件生成zip压缩包

                       
    /**     * 打包成zip包     */    public static void generateZip(OutputStream os, List<File> files) throws Exception {        ZipOutputStream out = null;        try {            byte[] buffer = new byte[1024];            //生成的ZIP文件名为Demo.zip            out = new ZipOutputStream(os);            //需要同时下载的两个文件result.txt ,source.txt            for (File file : files) {                FileInputStream fis = new FileInputStream(file);                out.putNextEntry(new ZipEntry(file.getName()));                int len;                //读入需要下载的文件的内容,打包到zip文件                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();            }        }    }
  
  
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
           
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值