`

Java Zip Utils 压缩/解压缩工具包

    博客分类:
  • Java
 
阅读更多

实际开发中可能会用到压缩或解压缩,底层借助于apache的zip,依赖jar文件:ant-1.7.1.jar

package com.gm.m2c.erp.common.util;

import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.Enumeration;

import org.apache.tools.zip.ZipEntry;
import org.apache.tools.zip.ZipFile;
import org.apache.tools.zip.ZipOutputStream;

/**
 * <p>
 * ZIP工具包
 * </p>
 * <p>
 * 依赖:ant-1.7.1.jar
 * </p>
 * 
 */
public class ZipUtils {
    
    /**
     * 使用GBK编码可以避免压缩中文文件名乱码
     */
    private static final String CHINESE_CHARSET = "GBK";
    
    /**
     * 文件读取缓冲区大小
     */
    private static final int CACHE_SIZE = 1024;
    
    /**
     * <p>
     * 压缩文件
     * </p>
     * 
     * @param sourceFolder 压缩文件夹
     * @param zipFilePath 压缩文件输出路径
     * @throws Exception
     */
    public static void zip(String sourceFolder, String zipFilePath) throws Exception {
        OutputStream out = new FileOutputStream(zipFilePath);
        BufferedOutputStream bos = new BufferedOutputStream(out);
        ZipOutputStream zos = new ZipOutputStream(bos);
        // 解决中文文件名乱码
        zos.setEncoding(CHINESE_CHARSET);
        File file = new File(sourceFolder);
        String basePath = null;
        if (file.isDirectory()) {
            basePath = file.getPath();
        } else {
            basePath = file.getParent();
        }
        zipFile(file, basePath, zos);
        zos.closeEntry();
        zos.close();
        bos.close();
        out.close();
    }
    
    /**
     * <p>
     * 递归压缩文件
     * </p>
     * 
     * @param parentFile
     * @param basePath
     * @param zos
     * @throws Exception
     */
    private static void zipFile(File parentFile, String basePath, ZipOutputStream zos) throws Exception {
        File[] files = new File[0];
        if (parentFile.isDirectory()) {
            files = parentFile.listFiles();
        } else {
            files = new File[1];
            files[0] = parentFile;
        }
        String pathName;
        InputStream is;
        BufferedInputStream bis;
        byte[] cache = new byte[CACHE_SIZE];
        for (File file : files) {
            if (file.isDirectory()) {
                pathName = file.getPath().substring(basePath.length() + 1) + "/";
                zos.putNextEntry(new ZipEntry(pathName));
                zipFile(file, basePath, zos);
            } else {
                pathName = file.getPath().substring(basePath.length() + 1);
                is = new FileInputStream(file);
                bis = new BufferedInputStream(is);
                zos.putNextEntry(new ZipEntry(pathName));
                int nRead = 0;
                while ((nRead = bis.read(cache, 0, CACHE_SIZE)) != -1) {
                    zos.write(cache, 0, nRead);
                }
                bis.close();
                is.close();
            }
        }
    }
    
    /**
     * <p>
     * 解压压缩包
     * </p>
     * 
     * @param zipFilePath 压缩文件路径
     * @param destDir 压缩包释放目录
     * @throws Exception
     */
    public static void unZip(String zipFilePath, String destDir) throws Exception {
        ZipFile zipFile = new ZipFile(zipFilePath, CHINESE_CHARSET);
        Enumeration<?> emu = zipFile.getEntries();
        BufferedInputStream bis;
        FileOutputStream fos;
        BufferedOutputStream bos;
        File file, parentFile;
        ZipEntry entry;
        byte[] cache = new byte[CACHE_SIZE];
        while (emu.hasMoreElements()) {
            entry = (ZipEntry) emu.nextElement();
            if (entry.isDirectory()) {
                new File(destDir + entry.getName()).mkdirs();
                continue;
            }
            bis = new BufferedInputStream(zipFile.getInputStream(entry));
            file = new File(destDir + entry.getName());
            parentFile = file.getParentFile();
            if (parentFile != null && (!parentFile.exists())) {
                parentFile.mkdirs();
            }
            fos = new FileOutputStream(file);
            bos = new BufferedOutputStream(fos, CACHE_SIZE);
            int nRead = 0;
            while ((nRead = bis.read(cache, 0, CACHE_SIZE)) != -1) {
                fos.write(cache, 0, nRead);
            }
            bos.flush();
            bos.close();
            fos.close();
            bis.close();
        }
        zipFile.close();
    }
    
    public static void main(String[] args) throws Exception {
        String sourceFolder = "E:\\360product\\PRODUCT_360_20140505.txt";
        String zipFilePath = "E:\\360product\\PRODUCT_360_20140505.zip";
      //  String destDir = "D:/";
        ZipUtils.zip(sourceFolder, zipFilePath);
      //  ZipUtils.unZip(zipFilePath, destDir);
    }
    
}

 

分享到:
评论
2 楼 doubledumbao 2017-04-26  
感谢你的代码,在使用中发现两处小问题,已经做了修改,再次感谢。
1 楼 doubledumbao 2017-04-26  
package com.ry.messagedigest;

import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.Enumeration;

import org.apache.tools.zip.ZipEntry;
import org.apache.tools.zip.ZipFile;
import org.apache.tools.zip.ZipOutputStream;

/**
 * <p>
 * ZIP工具包
 * </p>
 * <p>
 * 依赖:ant-1.7.1.jar
 * </p>
 * 
 */
public class ZipUtils {

	/**
	 * 使用GBK编码可以避免压缩中文文件名乱码
	 */
	private static final String CHINESE_CHARSET = "GBK";

	/**
	 * 文件读取缓冲区大小
	 */
	private static final int CACHE_SIZE = 1024;

	/**
	 * <p>
	 * 压缩文件
	 * </p>
	 * 
	 * @param sourceFolder
	 *            压缩文件夹
	 * @param zipFilePath
	 *            压缩文件输出路径
	 * @throws Exception
	 */
	public static void zip(String sourceFolder, String zipFilePath)
			throws Exception {
		OutputStream out = new FileOutputStream(zipFilePath);
		BufferedOutputStream bos = new BufferedOutputStream(out);
		ZipOutputStream zos = new ZipOutputStream(bos);
		// 解决中文文件名乱码
		zos.setEncoding(CHINESE_CHARSET);
		File file = new File(sourceFolder);
		String basePath = "";
		if (file.isDirectory()) {
			basePath = file.getPath();
			System.out.println("文件夹 basePath:" + basePath);
		} else {
			basePath = file.getParent().substring(0,
					file.getParent().length() - 1);
			System.out.println("文件 basePath:" + basePath);
		}
		zipFile(file, basePath, zos);
		zos.closeEntry();
		zos.close();
		bos.close();
		out.close();
	}

	/**
	 * <p>
	 * 递归压缩文件
	 * </p>
	 * 
	 * @param parentFile
	 * @param basePath
	 * @param zos
	 * @throws Exception
	 */
	private static void zipFile(File parentFile, String basePath,
			ZipOutputStream zos) throws Exception {
		File[] files = new File[0];
		if (parentFile.isDirectory()) {
			files = parentFile.listFiles();
		} else {
			files = new File[1];
			files[0] = parentFile;
		}
		String pathName = "";
		InputStream is = null;
		BufferedInputStream bis = null;
		byte[] cache = new byte[CACHE_SIZE];
		for (File file : files) {
			if (file.isDirectory()) {
				pathName = file.getPath().substring(basePath.length() + 1)
						+ "/";
				System.out.println("---------------1.文件夹pathName:" + pathName);
				zos.putNextEntry(new ZipEntry(pathName));
				zipFile(file, basePath, zos);
			} else {
				pathName = file.getPath().substring(basePath.length() + 1);
				System.out.println("----------------2.文件pathName:" + pathName);
				is = new FileInputStream(file);
				bis = new BufferedInputStream(is);
				zos.putNextEntry(new ZipEntry(pathName));
				int nRead = 0;
				while ((nRead = bis.read(cache, 0, CACHE_SIZE)) != -1) {
					zos.write(cache, 0, nRead);
				}
				bis.close();
				is.close();
			}
		}
	}

	/**
	 * <p>
	 * 解压压缩包
	 * </p>
	 * 
	 * @param zipFilePath
	 *            压缩文件路径
	 * @param destDir
	 *            压缩包释放目录
	 * @throws Exception
	 */
	public static void unZip(String zipFilePath, String destDir)
			throws Exception {
		ZipFile zipFile = new ZipFile(zipFilePath, CHINESE_CHARSET);
		Enumeration<?> emu = zipFile.getEntries();
		BufferedInputStream bis = null;
		FileOutputStream fos = null;
		BufferedOutputStream bos = null;
		File file = null;
		File parentFile = null;
		ZipEntry entry = null;
		byte[] cache = new byte[CACHE_SIZE];
		while (emu.hasMoreElements()) {
			entry = (ZipEntry) emu.nextElement();
			if (entry.isDirectory()) {
				new File(destDir, entry.getName()).mkdirs();
				continue;
			}
			bis = new BufferedInputStream(zipFile.getInputStream(entry));
			file = new File(destDir, entry.getName());
			parentFile = file.getParentFile();
			if (parentFile != null && (!parentFile.exists())) {
				parentFile.mkdirs();
			}
			fos = new FileOutputStream(file);
			bos = new BufferedOutputStream(fos, CACHE_SIZE);
			int nRead = 0;
			while ((nRead = bis.read(cache, 0, CACHE_SIZE)) != -1) {
				fos.write(cache, 0, nRead);
			}
			bos.flush();
			bos.close();
			fos.close();
			bis.close();
		}
		zipFile.close();
	}

	public static void main(String[] args) throws Exception {
		// String sourceFolder = "E:/logs"; //"E:/logs"
		// "E:/大型网站技术架构:核心原理与案例分析.pdf"
		String zipFilePath = "E:/logs.zip"; // "E:/logs.zip"
											// "E:/大型网站技术架构:核心原理与案例分析.zip"
		String destDir = "E:/haha";
		// ZipUtils.zip(sourceFolder, zipFilePath);
		ZipUtils.unZip(zipFilePath, destDir);

	}

}

相关推荐

    java实现的解压与压缩 zip和rar类型的

    总之,Java提供了解压缩和压缩文件的基本工具,对于ZIP格式,可以通过`java.util.zip`包轻松实现;而对于RAR格式,可以利用第三方库,如Apache Commons Compress。理解并熟练运用这些工具,将有助于开发出能够处理...

    7z解压缩java代码+工具

    本主题聚焦于“7z解压缩java代码+工具”,它涉及到使用Java编程语言实现对7z、tar、gz等压缩格式的支持。下面我们将深入探讨相关知识点。 首先,7z是一种高效的压缩格式,由7-Zip软件创建,它提供了比常见的ZIP或...

    Java解压zip文件完整代码分享

    Apache Commons Compress库提供了方便的API来处理各种压缩格式,包括ZIP。以下是一个详细的Java解压ZIP文件的代码示例,我们将深入探讨这个过程。 首先,我们需要引入Apache Commons Compress库,可以通过Maven或...

    ZipUtils.rar

    6. **错误处理**:在使用“Zip Utils”进行压缩解压缩时,应该考虑错误处理,例如文件不存在、权限问题、内存不足、压缩/解压缩失败等。库应该提供清晰的错误反馈机制,以便开发者能够调试和解决这些问题。 7. **...

    as3-plugin-utils.jar.zip

    在使用`as3-plugin-utils.jar`时,开发者首先需要解压缩`as3-plugin-utils.jar.zip`,然后将解压得到的`as3-plugin-utils.jar`添加到他们的Flash Builder、Flex Builder或其他AS3开发环境的类路径中。之后,他们就...

    文件GZip压缩AES加密反向解密解压缩代码和jar

    本资源包“文件GZip压缩AES加密反向解密解压缩代码和jar”提供了完整的Java实现,使得开发者能够方便地对文件进行GZip压缩、AES加密,以及后续的解密和解压缩操作。下面将详细解释这些技术及其应用。 首先,GZip...

    java解压7z用到的jar及解压方法

    这个库为Java提供了与7-Zip交互的API,使我们能够在Java代码中调用7-Zip的解压缩功能。 首先,我们需要导入必要的jar包。"sevenzipjbinding-all-platforms-9.20-2.00beta.jar"是sevenzipjbinding库的核心组件,它...

    bzip2代码样例

    在Java中处理bzip2文件,我们可以利用Java的内置库——`java.util.zip`包,但这个包并不直接支持bzip2格式。因此,我们需要依赖第三方库,如Apache Commons Compress库或者JCraft的jzlib。这两个库提供了对bzip2...

    ( WinXP Ubuntu10.10双系统下搭建开发环境笔记

    这个过程包括安装Ubuntu系统、配置SSH通信、安装JDK、设置环境变量、解压缩项目工程以及安装必要的编译工具和编辑器。 首先,我们需要在Windows XP上安装DAEMON Tools Lite 4356.exe,这是一个虚拟光驱软件,用于...

    windows下搭建ARM开源开发环境.pdf

    此环境主要用于嵌入式系统的开发与调试,涉及的关键组件包括Java运行环境(JRE)、Eclipse集成开发环境(IDE)、WinARM工具链以及Yagarto工具包等。通过本指南,读者将能够按照步骤顺利搭建起一个高效稳定的开发平台。 ...

    commons-compress-1.18-bin.zip

    《Java中的Apache Commons Compress库:使用Tar进行压缩与解压缩》 Apache Commons Compress库是Java开发中处理各种归档格式的一个强大工具,其中包括了对tar格式的支持。这个库为开发者提供了简单易用的API,可以...

    MSD918配置环境

    2. **下载并解压ChaiTools**:下载ChaiTools工具包至`/tools/arm`目录,并解压缩。 ```bash tar xvf arm-2012.09-arm-none-linux-gnueabi.tgz tar xvf arm-2011.03-42-arm-none-eabi-i686-pc-linux-gnu.tar.bz2 ...

    weblogic补丁安装

    6. **解压补丁**:使用解压缩命令解压补丁包,例如: ```bash unzip p23743997_1036_Generic.zip ``` ### 查看已安装补丁 在安装新补丁之前,需要先查看当前WebLogic已安装的补丁,这可以通过WebLogic管理控制台...

    ubuntu下android编译环境搭建

    解压缩到 tools 目录下,并配置环境变量。 #### 九、结语 至此,我们已经完成了 Ubuntu 下 Android 编译环境的搭建。通过本文的步骤,您可以成功构建一个功能完善的 Android 开发环境,为后续的 Android 系统定制...

    Weblogic补丁安装.docx

    - 使用解压缩工具(如WinRAR或7-Zip等)解压补丁包`p29204678_1036_Generic.zip`,通常会得到两个文件:一个`.jar`文件和一个`.xml`文件。 - 将这两个文件复制到Weblogic安装目录下的`Middleware/utils/bsu/cache_...

    Ambari介绍、安装与应用案例

    注意,这里提到了MySQL的RPM安装包和Java驱动的ZIP文件,都需要解压缩并确认版本兼容性。 在安装Ambari前,需要先对所有机器进行一些基础配置,包括设置主机名、网络配置和主机解析。主机名应该清晰反映其在网络中...

    windows下分布式部署Mysql、Redis、Zookeeper、Nginx、FastDFS集合

    2. **解压缩:** - 将下载的 ZIP 包解压到合适的位置,例如 `C:\zookeeper`。 3. **配置环境变量:** - 将 Zookeeper 的安装目录添加到系统环境变量 `PATH` 中。 4. **配置 Zookeeper 属性文件:** - 编辑 `...

    freescale android9.0编译

    3. 解压缩下载的Android发布包,这个步骤可能涉及使用`tar`命令或者相应的图形界面工具。解压后,你将得到Android源代码及其相关配置文件。 4. 配置编译环境。这通常涉及设置环境变量,如`PATH`, `JAVA_HOME`, `NDK...

Global site tag (gtag.js) - Google Analytics