java解压压缩包工具类

2021/4/10 22:11:28

本文主要是介绍java解压压缩包工具类,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

/**
     *
     * @param zipFile 压缩包文件
     * @param descDir 解压缩文件存放路径
     * @return
     */
    public static boolean unzip(File zipFile, String descDir) {
        try (ZipArchiveInputStream inputStream = getZipFile(zipFile)) {
            File pathFile = new File(descDir);
            if (!pathFile.exists()) {
                pathFile.mkdirs();
            }
            ZipArchiveEntry entry;
            while ((entry = inputStream.getNextZipEntry()) != null) {
                String name = entry.getName();
                if (entry.isDirectory()) {
                    File directory = new File(descDir, name);
                    directory.mkdirs();
                } else {
                    OutputStream os = null;
                    try {
                        os = new BufferedOutputStream(new FileOutputStream(new File(descDir, name)));
                        //输出文件路径信息
                        IOUtils.copy(inputStream, os);
                    } finally {
                        IOUtils.closeQuietly(os);
                    }
                }
            }

        } catch (Exception e) {
            logger.error("[unzip] 解压zip文件出错", e);
            return false;
        }
        return true;
    }

    private static ZipArchiveInputStream getZipFile(File zipFile) throws Exception {
        return new ZipArchiveInputStream(new BufferedInputStream(new FileInputStream(zipFile)),"utf-8", true);
    }

 



这篇关于java解压压缩包工具类的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程