解压zip文件到指定目录

public static void main(String[] args) throws IOException {

    unZip("压缩包地址 zip文件",
            "压缩到指定目录");

}

public static void unZip(String sourceFilename, String targetDir) throws IOException {
    unZip(new File(sourceFilename), targetDir);
}

public static void unZip(File sourceFile, String targetDir) throws IOException {
    long start = System.currentTimeMillis();
    if (!sourceFile.exists()) {
        throw new FileNotFoundException("cannot find the file = " + sourceFile.getPath());
    }
    ZipFile zipFile = null;
    try {
        zipFile = new ZipFile(sourceFile, Charset.forName("GBK"));
        Enumeration<?> entries = zipFile.entries();
        while (entries.hasMoreElements()) {
            ZipEntry entry = (ZipEntry) entries.nextElement();
            if (entry.isDirectory()) {
                String dirPath = targetDir + "/" + entry.getName();
                System.out.println(dirPath);
                createDirIfNotExist(dirPath);
            } else {
                File targetFile = new File(targetDir + "/" + entry.getName());
                createFileIfNotExist(targetFile);
                InputStream is = null;
                FileOutputStream fos = null;
                try {
                    is = zipFile.getInputStream(entry);
                    fos = new FileOutputStream(targetFile);
                    int len;
                    byte[] buf = new byte[1024];
                    while ((len = is.read(buf)) != -1) {
                        fos.write(buf, 0, len);
                    }
                } finally {
                    try {
                        fos.close();
                    } catch (Exception e) {
                        //   log.warn("close FileOutputStream exception", e);
                    }
                    try {
                        is.close();
                    } catch (Exception e) {
                        //  log.warn("close InputStream exception", e);
                    }
                }
            }
        }
        System.out.println("解压完成,耗时:" + (System.currentTimeMillis() - start) + " ms");
        // log.info("解压完成,耗时:" + (System.currentTimeMillis() - start) +" ms");
    } finally {
        if (zipFile != null) {
            try {
                zipFile.close();
            } catch (IOException e) {
                // log.warn("close zipFile exception", e);
            }
        }
    }
}

public static void createDirIfNotExist(String path) {
    File file = new File(path);
    createDirIfNotExist(file);
}

public static void createDirIfNotExist(File file) {
    if (!file.exists()) {
        file.mkdirs();
    }
}

public static void createFileIfNotExist(File file) throws IOException {
    createParentDirIfNotExist(file);
    file.createNewFile();
}

public static void createParentDirIfNotExist(File file) {
    createDirIfNotExist(file.getParentFile());
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值