当前位置: 首页 > article >正文

文件压缩zip工具

文章目录

  • 文件压缩及解压缩

文件压缩及解压缩

不废话上代码

public class ZipFileUtil {

    /**
     * 日志记录器,用于记录ZipFileUtil类中的日志信息
     */
    private static final Logger log = LoggerFactory.getLogger(ZipFileUtil.class);


    /**
     * 压缩多个文件成一个zip文件
     *
     * @param srcFiles:源文件列表
     * @param destZipFile:压缩后的文件
     */
    public static void toZip(List<File> srcFiles, File destZipFile) {
        byte[] buf = new byte[1024];
        try {
            // ZipOutputStream类:完成文件或文件夹的压缩
            ZipOutputStream out = new ZipOutputStream(Files.newOutputStream(destZipFile.toPath()));
            for (File srcFile : srcFiles) {
                FileInputStream in = new FileInputStream(srcFile);
                // 给列表中的文件单独命名
                out.putNextEntry(new ZipEntry(srcFile.getName()));
                int len;
                while ((len = in.read(buf)) > 0) {
                    out.write(buf, 0, len);
                }
                out.closeEntry();
                in.close();
            }
            out.close();
        } catch (Exception e) {
            log.error("压缩文件失败,", e);
        }
    }

    /**
     * 解压缩指定的 ZIP 文件到指定的输出目录
     *
     * @param zipFile 待解压的 ZIP 文件
     * @param outDir  解压后的输出目录
     * @throws Exception 如果解压过程中发生错误
     */
    public static void unZip(File zipFile, String outDir) throws Exception {
        if (zipFile == null || !zipFile.exists() || zipFile.length() == 0) {
            throw new FileNotFoundException();
        }
        final ZipInputStream zipInputStream = new ZipInputStream(Files.newInputStream(zipFile.toPath()));
        ZipEntry entry;
        while ((entry = zipInputStream.getNextEntry()) != null) {
            if (!entry.isDirectory()) {
                final File file = new File(outDir, entry.getName());
                if (!file.exists()) {
                    file.getParentFile().mkdirs();
                }

                final FileOutputStream fileOutputStream = new FileOutputStream(file);
                final BufferedOutputStream bufferedOutputStream = new BufferedOutputStream(fileOutputStream);
                int len;
                final byte[] bytes = new byte[1024];
                while ((len = zipInputStream.read(bytes)) != -1) {
                    bufferedOutputStream.write(bytes, 0, len);
                }
                bufferedOutputStream.close();
                fileOutputStream.close();
            }
            zipInputStream.closeEntry();
        }
        zipInputStream.close();
    }
}

http://www.kler.cn/a/300981.html

相关文章:

  • 如何使用PHP构建IoC容器,实现依赖注入!
  • My ICLR Learning-Feedback
  • React第二十二章(useDebugValue)
  • uni-app的学习
  • centos 8 中安装Docker
  • Flask表单处理与验证
  • vue3的学习
  • 【LeetCode 算法笔记】49. 字母异位词分组
  • EmguCV学习笔记 VB.Net 11.3 DNN其它
  • 特种设备考试真题题库及答案
  • adb有线连接正常,adb connect失败
  • 利用 GitHub Actions 自动提交 URL 到 IndexNow
  • Docker 镜像配置
  • delphi 12 给App授予权限
  • 聚铭网络受邀成为ISC终端安全生态联盟首批成员单位
  • 【jvm】记一次hive堆heap内存溢出的排查
  • opencv之图像轮廓(三)--凸包
  • 机器学习 第11章 特征选择与稀疏学习
  • 【网络】UDP协议的简单使用
  • 前端性能优化——对节流与防抖的理解
  • pico2 开发环境搭建-基于ubuntu
  • 李宏毅结构化学习 01
  • 力扣238 移动零 Java版本 时间复杂度为O(0)
  • 机器学习 第12章 计算学习理论
  • 在Excel里制作简单游戏界面
  • F12抓包09:获取图片base64码