• java实现多文件压缩


    java 实现将多个文件,压缩到同一个 zip 压缩包中

    package com.yuhuofei.utils;
    
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.text.SimpleDateFormat;
    import java.util.ArrayList;
    import java.util.Date;
    import java.util.List;
    import java.util.zip.ZipEntry;
    import java.util.zip.ZipOutputStream;
    
    /**
     * @Description
     * @ClassName ZipUtils
     * @Author yuhuofei
     * @Date 2022/8/10 20:37
     * @Version 1.0
     */
    public class ZipUtils {
    
        /**
         * @param zipPathDir  压缩包路径 ,如 /home/data/zip-folder/
         * @param zipFileName 压缩包名称 ,如 测试文件.zip
         * @param fileList    要压缩的文件列表(绝对路径),如 /home/person/test/测试.doc,/home/person/haha/测试.doc
         * @return
         */
        public static void compressFiles(String zipPathDir, String zipFileName, List<String> fileList) {
    
            try (ZipOutputStream zos = new ZipOutputStream(new FileOutputStream(new File(zipPathDir + zipFileName)))) {
                File zipFile = new File(zipPathDir);
                if (!zipFile.exists()) {
                    zipFile.mkdirs();
                }
                for (String filePath : fileList) {
                    File file = new File(filePath);
    
                    if (file.exists()) {
                        int index = file.getName().lastIndexOf('.');
                        ZipEntry zipEntry = new ZipEntry(file.getName().substring(0, index) + "-" + dateRandom18() + file.getName().substring(index));
                        zos.putNextEntry(zipEntry);
                        byte[] buffer = new byte[2048];
                        compressSingleFile(file, zos, buffer);
                    }
                }
                zos.flush();
            } catch (Exception e) {
                System.out.println("压缩所有文件成zip包出错" + e);
            }
        }
    
        //压缩单个文件
        public static void compressSingleFile(File file, ZipOutputStream zos, byte[] buffer) {
            int len;
            try (FileInputStream fis = new FileInputStream(file)) {
                while ((len = fis.read(buffer)) > 0) {
                    zos.write(buffer, 0, len);
                    zos.flush();
                }
                zos.closeEntry();
            } catch (IOException e) {
                System.out.println("====压缩单个文件异常====" + e);
            }
        }
    
        //生成随机数
        public static String dateRandom18() {
            SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyyMMdd");
            String date = simpleDateFormat.format(new Date());
            String timeMillis = String.valueOf(System.currentTimeMillis());
            String fiveNumber = timeMillis.substring(timeMillis.length() - 6);
            String tempRandom = String.valueOf(Math.random());
            String number = tempRandom.substring(tempRandom.length() - 4);
            return date + fiveNumber + number;
        }
    
        //测试方法
        public static void main(String[] args) {
    
            String zipPathDir = "D:/test/";
            String zipFileName = "测试文件.zip";
            List<String> list = new ArrayList<>();
            list.add("C:/Users/yuhuofei/Desktop/mybatis截图/00.JPG");
            list.add("C:/Users/yuhuofei/Desktop/mybatis截图/01.JPG");
    
            compressFiles(zipPathDir, zipFileName, list);
        }
    }
    
    
    • 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
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90

    结果如下

    在这里插入图片描述

  • 相关阅读:
    ASM字节码插桩解决国内隐私问题
    Linux 设备模型【1】- devm_kzalloc()
    信息熵与信息增益——python
    使用Docker/K8S/Helm部署项目流程
    【大连民族大学C语言CG题库练习题】——判断一个矩阵是另一个矩阵的子矩阵
    nginx
    设计模式概述
    Redis 基础总结
    学数学,要“直觉”还是要“严谨”?
    Makefile 基础教程:从零开始学习
  • 原文地址:https://blog.csdn.net/Crezfikbd/article/details/126268756