`
龙哥IT
  • 浏览: 254584 次
  • 性别: Icon_minigender_1
  • 来自: 武汉
文章分类
社区版块
存档分类
最新评论

ZIP文件工具类 ZipUtils

 
阅读更多
/*
 * Copyright (c) 2014,KJFrameForAndroid Open Source Project,张涛.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package net.oschina.app.util;

import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.UnsupportedEncodingException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Enumeration;
import java.util.zip.ZipEntry;
import java.util.zip.ZipException;
import java.util.zip.ZipFile;
import java.util.zip.ZipOutputStream;

/**
 * ZIP文件工具类
 * 
 * @author kymjs(kymjs123@gmail.com)
 */
public class ZipUtils {
    private static final int BUFF_SIZE = 1024 * 1024; // 1M Byte

    /**
     * 批量压缩文件(夹)
     * 
     * @param resFileList
     *            要压缩的文件(夹)列表
     * @param zipFile
     *            生成的压缩文件
     * @throws IOException
     *             当压缩过程出错时抛出
     */
    public static void zipFiles(Collection<File> resFileList, File zipFile)
            throws IOException {
        ZipOutputStream zipout = new ZipOutputStream(new BufferedOutputStream(
                new FileOutputStream(zipFile), BUFF_SIZE));
        for (File resFile : resFileList) {
            zipFile(resFile, zipout, "");
        }
        zipout.close();
    }

    /**
     * 批量压缩文件(夹)
     * 
     * @param resFileList
     *            要压缩的文件(夹)列表
     * @param zipFile
     *            生成的压缩文件
     * @param comment
     *            压缩文件的注释
     * @throws IOException
     *             当压缩过程出错时抛出
     */
    public static void zipFiles(Collection<File> resFileList, File zipFile,
            String comment) throws IOException {
        ZipOutputStream zipout = new ZipOutputStream(new BufferedOutputStream(
                new FileOutputStream(zipFile), BUFF_SIZE));
        for (File resFile : resFileList) {
            zipFile(resFile, zipout, "");
        }
        zipout.setComment(comment);
        zipout.close();
    }

    /**
     * 解压缩一个文件
     * 
     * @param zipFile
     *            压缩文件
     * @param folderPath
     *            文件解压到指定目标路径
     * @throws IOException
     *             当解压缩过程出错时抛出
     */
    public static void upZipFile(File zipFile, String folderPath)
            throws ZipException, IOException {
        File desDir = new File(folderPath);
        if (!desDir.exists()) {
            desDir.mkdirs();
        }
        ZipFile zf = new ZipFile(zipFile);
        for (Enumeration<?> entries = zf.entries(); entries.hasMoreElements();) {
            ZipEntry entry = ((ZipEntry) entries.nextElement());
            InputStream in = zf.getInputStream(entry);
            String str = folderPath + File.separator + entry.getName();
            str = new String(str.getBytes("8859_1"), "GB2312");
            File desFile = new File(str);
            if (!desFile.exists()) {
                File fileParentDir = desFile.getParentFile();
                if (!fileParentDir.exists()) {
                    fileParentDir.mkdirs();
                }
                desFile.createNewFile();
            }
            OutputStream out = new FileOutputStream(desFile);
            byte buffer[] = new byte[BUFF_SIZE];
            int realLength;
            while ((realLength = in.read(buffer)) > 0) {
                out.write(buffer, 0, realLength);
            }
            in.close();
            out.close();
        }
    }

    /**
     * 解压文件名包含传入文字的文件
     * 
     * @param zipFile
     *            压缩文件
     * @param folderPath
     *            目标文件夹
     * @param nameContains
     *            传入的文件匹配名
     * @throws ZipException
     *             压缩格式有误时抛出
     * @throws IOException
     *             IO错误时抛出
     */
    public static ArrayList<File> upZipSelectedFile(File zipFile,
            String folderPath, String nameContains) throws ZipException,
            IOException {
        ArrayList<File> fileList = new ArrayList<File>();

        File desDir = new File(folderPath);
        if (!desDir.exists()) {
            desDir.mkdir();
        }

        ZipFile zf = new ZipFile(zipFile);
        for (Enumeration<?> entries = zf.entries(); entries.hasMoreElements();) {
            ZipEntry entry = ((ZipEntry) entries.nextElement());
            if (entry.getName().contains(nameContains)) {
                InputStream in = zf.getInputStream(entry);
                String str = folderPath + File.separator + entry.getName();
                str = new String(str.getBytes("8859_1"), "GB2312");
                // str.getBytes("GB2312"),"8859_1" 输出
                // str.getBytes("8859_1"),"GB2312" 输入
                File desFile = new File(str);
                if (!desFile.exists()) {
                    File fileParentDir = desFile.getParentFile();
                    if (!fileParentDir.exists()) {
                        fileParentDir.mkdirs();
                    }
                    desFile.createNewFile();
                }
                OutputStream out = new FileOutputStream(desFile);
                byte buffer[] = new byte[BUFF_SIZE];
                int realLength;
                while ((realLength = in.read(buffer)) > 0) {
                    out.write(buffer, 0, realLength);
                }
                in.close();
                out.close();
                fileList.add(desFile);
            }
        }
        return fileList;
    }

    /**
     * 获得压缩文件内文件列表
     * 
     * @param zipFile
     *            压缩文件
     * @return 压缩文件内文件名称
     * @throws ZipException
     *             压缩文件格式有误时抛出
     * @throws IOException
     *             当解压缩过程出错时抛出
     */
    public static ArrayList<String> getEntriesNames(File zipFile)
            throws ZipException, IOException {
        ArrayList<String> entryNames = new ArrayList<String>();
        Enumeration<?> entries = getEntriesEnumeration(zipFile);
        while (entries.hasMoreElements()) {
            ZipEntry entry = ((ZipEntry) entries.nextElement());
            entryNames.add(new String(getEntryName(entry).getBytes("GB2312"),
                    "8859_1"));
        }
        return entryNames;
    }

    /**
     * 获得压缩文件内压缩文件对象以取得其属性
     * 
     * @param zipFile
     *            压缩文件
     * @return 返回一个压缩文件列表
     * @throws ZipException
     *             压缩文件格式有误时抛出
     * @throws IOException
     *             IO操作有误时抛出
     */
    public static Enumeration<?> getEntriesEnumeration(File zipFile)
            throws ZipException, IOException {
        ZipFile zf = new ZipFile(zipFile);
        return zf.entries();

    }

    /**
     * 取得压缩文件对象的注释
     * 
     * @param entry
     *            压缩文件对象
     * @return 压缩文件对象的注释
     * @throws UnsupportedEncodingException
     */
    public static String getEntryComment(ZipEntry entry)
            throws UnsupportedEncodingException {
        return new String(entry.getComment().getBytes("GB2312"), "8859_1");
    }

    /**
     * 取得压缩文件对象的名称
     * 
     * @param entry
     *            压缩文件对象
     * @return 压缩文件对象的名称
     * @throws UnsupportedEncodingException
     */
    public static String getEntryName(ZipEntry entry)
            throws UnsupportedEncodingException {
        return new String(entry.getName().getBytes("GB2312"), "8859_1");
    }

    /**
     * 压缩文件
     * 
     * @param resFile
     *            需要压缩的文件(夹)
     * @param zipout
     *            压缩的目的文件
     * @param rootpath
     *            压缩的文件路径
     * @throws FileNotFoundException
     *             找不到文件时抛出
     * @throws IOException
     *             当压缩过程出错时抛出
     */
    private static void zipFile(File resFile, ZipOutputStream zipout,
            String rootpath) throws FileNotFoundException, IOException {
        rootpath = rootpath
                + (rootpath.trim().length() == 0 ? "" : File.separator)
                + resFile.getName();
        rootpath = new String(rootpath.getBytes("8859_1"), "GB2312");
        if (resFile.isDirectory()) {
            File[] fileList = resFile.listFiles();
            for (File file : fileList) {
                zipFile(file, zipout, rootpath);
            }
        } else {
            byte buffer[] = new byte[BUFF_SIZE];
            BufferedInputStream in = new BufferedInputStream(
                    new FileInputStream(resFile), BUFF_SIZE);
            zipout.putNextEntry(new ZipEntry(rootpath));
            int realLength;
            while ((realLength = in.read(buffer)) != -1) {
                zipout.write(buffer, 0, realLength);
            }
            in.close();
            zipout.flush();
            zipout.closeEntry();
        }
    }
}

 

分享到:
评论

相关推荐

    java的ZipUtils工具类

    Java的ZipUtils工具类是Java开发中用于处理ZIP文件的一个实用工具集,它极大地简化了对ZIP文件的创建、解压以及与磁盘文件交互的操作。在Java中,虽然标准库提供了一些基本的ZIP文件操作,如java.util.zip包中的...

    ZipUtilsjava压缩文件源码--ZipUtils

    在Java编程语言中,`ZipUtils`通常是一个自定义工具类,用于处理ZIP文件的压缩与解压缩操作。ZIP文件格式是一种广泛使用的归档格式,它允许将多个文件和目录打包到一个单一的ZIP文件中,便于存储和传输。本文将深入...

    java zip压缩解压工具解决中文乱码问题

    此外,Apache Commons IO的`ZipUtils`类提供了静态方法,可以用来方便地进行ZIP文件的创建和解压。例如,要创建一个ZIP文件,你可以这样做: ```java File[] files = { ... }; File targetZip = new File("output....

    java压缩工具类附zip4j_1.3.1.jar

    Java编程语言提供了多种库来处理压缩文件,其中`zip4j`是一个流行的开源库,用于在Java应用程序中方便地创建、读取、修改和解压缩ZIP文件...在实际开发中,合理使用这样的工具类可以极大地提高代码的可维护性和复用性。

    ZipUtils.rar

    在本篇文章中,我们将深入探讨名为"ZipUtils"的Java工具类,它提供了ZIP文件的压缩与解压功能,并通过测试代码进行验证。 首先,让我们了解一下`ZipUtils`类的核心功能。这个工具类通常包含两个主要方法:一个是...

    zip_utils_century4gy_C++ZipUtils压缩_Vc_zip_

    总之,`zip_utils`提供的C++ MFC源码实现了ZIP文件的压缩和解压缩功能,是开发过程中处理文件打包和解包的一个实用工具。通过理解和利用这些源码,开发者可以更有效地在C++项目中集成ZIP文件的支持,提高代码的可...

    ZipUtilsjava压缩文件源码--ZipUtilsJava源码

    ZipUtils是一个常用的工具类,用于方便地进行ZIP格式的文件压缩与解压。本文将深入探讨ZipUtilsJava源码的相关知识点,帮助你理解和应用这个工具。 首先,我们来了解ZIP文件格式。ZIP是一种广泛使用的文件存档格式...

    java实现文件压缩成zip的工具类

    Java 实现文件压缩成 ZIP 的工具类 本文主要介绍了 Java 实现文件压缩成 ZIP 的工具类,具有一定的参考价值。该工具类可以实现文件压缩、文件夹压缩、多级文件夹压缩、空文件夹压缩等功能,并且可以选择是否保留...

    Android Zip解压缩工具类分享

    解压缩Zip文件的步骤 解压缩 Zip 文件的步骤可以分为以下几个步骤: 1. 创建 ZipInputStream 对象,读取 Zip 文件。 2. 遍历 Zip 文件中的每个条目,如果是目录,则创建对应的文件夹。 3. 如果是文件,则读取文件...

    Java实现的带密码压缩与解压zip文件源码

    `ZipOutputStream`用于创建ZIP文件,而`ZipInputStream`则用于读取和解压ZIP文件。为了添加密码保护,我们需要在创建`ZipOutputStream`时设置一个密码。 1. **密码保护**:在压缩过程中,可以使用`ZipEntry`对象来...

    zipUtils官网压缩包

    【ZipUtils】是一款实用的Java库,用于处理与ZIP...总的来说,ZipUtils是一个强大的工具,能够简化Java开发中涉及ZIP文件的各类任务。通过合理使用和遵循注意事项,开发者可以高效地完成各种ZIP操作,提高工作效率。

    文件的压缩和解压的工具类

    本篇文章将深入探讨如何使用Java实现针对多种压缩格式(如zip、tar、tar.gz、gz、rar)的工具类,特别是针对提供的`ZipUtils.java`和`TarUtils.java`。 首先,我们来看`ZipUtils.java`。`Zip`是一种广泛使用的文件...

    Java实现的zip工具类完整实例

    工具类的实现主要通过使用Java的IO streams和Zip文件操作类来实现。下面是工具类的完整实现代码: public class ZipUtils { / * 解压zip到指定路径 * @param zipFile 待解压文件 * @param descDir 指定解压路径...

    java解压ZIP文件

    - **org.apache.tools.zip**: Apache Commons Compress库中的`org.apache.tools.zip`包提供了一系列工具类,用于处理ZIP文件格式。这些工具比标准Java API更加强大且易于使用。 - **BufferedInputStream** 和 **...

    Java ZiptUtil工具类

    压缩工具类,压缩文件夹 * * @param zipFileName * 打包后文件的名称,含路径 * @param sourceFolder * 需要打包的文件夹或者文件的路径 * @param zipPathName * 打包目的文件夹名,为空则表示直接打包到根,...

    java zip解压缩

    在实际项目中,这些基本的压缩和解压缩操作可以被封装成工具类,以供其他模块调用。例如,我们可以创建一个`ZipUtils`类,包含静态方法`compressFiles()`和`unzipFiles()`,这样可以方便地在代码中进行文件的压缩...

    java组件(DateUtils,EncryptUtil,StringUtils,WordEdit功能,ZipUtils,导出Excel,读写Excel文件)

    5. **ZipUtils**: 压缩和解压缩工具类,用于处理ZIP文件。它包含了压缩文件和目录到ZIP,以及从ZIP文件中提取内容的方法。这对于数据的归档、传输或分发很有帮助。 6. **导出Excel**: 这部分可能涉及到生成Excel...

    apache zip压缩类和jar包 集合

    这个库的`ZipUtils`类提供了一系列静态方法,使得创建、更新和提取ZIP文件变得异常简单。例如,你可以使用`addEntryToZipFile()`方法向现有的ZIP文件添加新的条目,或者使用`createZipFile()`来从一组文件或目录创建...

    附件压缩下载

    在IT行业中,附件压缩下载是一项常见的需求,尤其是在文件分享...`ZipUtils.java`是关键的工具类,包含了压缩逻辑。而`apache-ant-zip-2.3.jar`可能是备用的压缩库,但通常情况下,Java标准库足以满足大部分压缩需求。

Global site tag (gtag.js) - Google Analytics