文件的压缩与解压XZip,XUnzip

参考http://www.codeproject.com/KB/cpp/xzipunzip.aspx

CreateZip() –创建一个空的 zip 文件

HZIP CreateZip(void *z, unsigned int len, DWORD flags);

// Parameters: z - 压缩文件名
// len - 对于压缩内存内容(ZIP_MEMORY) 这个值是压缩内存的大小; // 其他情况,这个值应当是 0 // flags - 如果是压缩文件,请用这个标志 ZIP_FILENAME // // Returns: HZIP - 非 0 值为成功, 非则返回 0

ZipAdd() 将一个文件添加进压缩文件

// Parameters: hz - 创建或 打开的zip文件句柄
// dstzn - 在zip文件中显示的文件名
// src - 对于(ZIP_FILENAME)的情况,这是将要添加进zip文件的文件名
// len - 对于压缩内存内容(ZIP_MEMORY) 这个值是压缩内存的大小;
// 其他情况,这个值应当是 0
// flags - 如果是压缩文件,请用这个标志 ZIP_FILENAME
// // Returns: ZRESULT - 成功则返回 ZR_OK
OpenZip() 打开一个已经存在的压缩文件
// Parameters: z - 压缩文件名
// len - 对于压缩内存内容(ZIP_MEMORY) 这个值是压缩内存的大小;
// 其他情况,这个值应当是 0
// flags - 如果是压缩文件,请用这个标志 ZIP_FILENAME
// // Returns: HZIP - 非 0 值为成功, 非则返回 0

GetZipItem() 得到压缩文件里面元素的信息

// Parameters: hz - 创建或 打开的zip文件句柄
// index - zip文件里的元素下标(从0开始)
// ze - 一个指向ZIPENTRY 结构体的指针(ANSI) 或者 ZIPENTRYW (Unicode) // // Returns: ZRESULT - 成功则返回 ZR_OK

FindZipItem() 在压缩文件里查找某元素

// Parameters: hz - 创建或 打开的zip文件句柄
// name - 你要在zip文件中查找的元素名字
// ic - 值为 TRUE 不区分大小写
// index - 返回要查找元素的下标,否则是-1 // ze - 返回指向ZIPENTRY 结构体的指针(ANSI) 或者 ZIPENTRYW (Unicode)
// // Returns: ZRESULT - 成功则返回 ZR_OK

UnzipItem() 解压压缩文件里的某元素

// Parameters: hz - 创建或 打开的zip文件句柄
// index - 要解压元素的下标
// dst - 解压出来文件的名字
// len - 对于压缩内存内容(ZIP_MEMORY) 这个值是压缩内存的大小;
// 其他情况,这个值应当是 0
// flags - 如果是压缩文件,请用这个标志 ZIP_FILENAME
// // Returns: ZRESULT - 成功则返回 ZR_OK

CloseZip() 关闭压缩文件

// Parameters: hz - 要操作的zip文件句柄
// // Returns: ZRESULT - 成功则返回 ZR_OK

 

注意,不能一次压缩整个目录,可以相对路径来压缩目录

void CZipDlg::OnOK()

{

// TODO: Add extra validation here

//********** 压缩文件 ******************************

HZIP hz = CreateZip("test.zip",0,ZIP_FILENAME);

ZipAdd(hz,"NameInZip.txt", "ReadMe.txt",0,ZIP_FILENAME);

ZipAdd(hz,"zip.h", "打包压缩文件zip.h",0,ZIP_FILENAME);

CloseZip(hz);

//********** 压缩目录和文件 **************************

HZIP hz1 = CreateZip("test1.zip",0,ZIP_FILENAME);

//空目录

ZipAdd(hz1,"aa", "Debug",0,ZIP_FOLDER);//ZIP_FOLDER

//有两个文件的目录

ZipAdd(hz1,"res\\NameInZip.txt", "ReadMe.txt",0,ZIP_FILENAME);

ZipAdd(hz1,"res\\zip.h", "打包压缩文件zip.h",0,ZIP_FILENAME);

CloseZip(hz1);

// CDialog::OnOK();

}

不使用任何lib和dll,压缩/解压缩文件(zip格式)   

发布者:   soarlove   ——> 查看soarlove在VCCode发布的所有文章     文章类型:翻译     
发布日期:2003.05.18         
升级次数:0     
今日浏览:2     
总浏览:502     

-------------------------------------------------------------------------------- 
  
评价等级:               
  代码下载     
2位用户为此文章评分,平均分为5.0   

作者:Hans   Dietrich     译自:CodeProject 

摘要 
这篇文章介绍XZip和XUnzip两个文件,功能是不需要在你的工程中加入任何的.lib或.dll文件,完成压缩和解压缩的功能(zip格式)。 

首先,让我感谢Lucian   Wischik的工作,他把从Info-ZIP得到的很多.c和.h文件转化对应的.cpp和.h文件,这些文件是XZip的基础。 

XZip和XUnzip的功能 
大多数的函数在XZip演示工程中都有使用演示。这里列出其中重要的一些函数:   

CreateZip()   -   创建zip档案文件   ///////////////////////////////////////////////////////////////// 
// 
//   CreateZip() 
// 
//   Purpose:           Create   a   zip   archive   file 
// 
//   Parameters:     z             -   archive   file   name   if   flags   is   ZIP_FILENAME; 
//                                               for   other   uses   see   below 
//                             len         -   for   memory   (ZIP_MEMORY)   should   be   the   buffer 
//                                               size;     for   other   uses,   should   be   0 
//                             flags     -   indicates   usage,   see   below;     for   files,   this
//                                               will   be   ZIP_FILENAME 
// 
//   Returns:           HZIP       -   non-zero   if   zip   archive   created   ok,   otherwise   0 
// 
ZipAdd()   -   向zip档案中添加一个文件   ///////////////////////////////////////////////////////////////// 
// 
//   ZipAdd() 
// 
//   Purpose:           Add   a   file   to   a   zip   archive 
// 
//   Parameters:     hz             -   handle   to   an   open   zip   archive 
//                             dstzn       -   name   used   inside   the   zip   archive   to   identify 
//                                                 the   file 
//                             src           -   for   a   file   (ZIP_FILENAME)   this   specifies   the 
//                                                 filename   to   be   added   to   the   archive;     for 
//                                                 other   uses,   see   below 
//                             len           -   for   memory   (ZIP_MEMORY)   this   specifies   the 
//                                                 buffer   length;     for   other   uses,   this   should 
//                                                 be   0 
//                             flags       -   indicates   usage,   see   below;     for   files,   this 
//                                                 will   be   ZIP_FILENAME 
// 
//   Returns:           ZRESULT   -   ZR_OK   if   success,   otherwise   some   other   value 
// 
OpenZip()   -   打开一个已存在的zip档案文件   ///////////////////////////////////////////////////////////////// 
// 
//   OpenZip() 
// 
//   Purpose:           Open   an   existing   zip   archive   file 
// 
//   Parameters:     z             -   archive   file   name   if   flags   is   ZIP_FILENAME; 
//                                               for   other   uses   see   below 
//                             len         -   for   memory   (ZIP_MEMORY)   should   be   the   buffer 
//                                               size;   for   other   uses,   should   be   0 
//                             flags     -   indicates   usage,   see   below;     for   files,   this
//                                               will   be   ZIP_FILENAME 
// 
//   Returns:           HZIP       -   non-zero   if   zip   archive   opened   ok,   otherwise   0 
// 
GetZipItem()   -   得到打开的zip档案文件中的相关条目的信息   ///////////////////////////////////////////////////////////////// 
// 
//   GetZipItem() 
// 
//   Purpose:           Get   information   about   an   item   in   an   open   zip   archive 
// 
//   Parameters:     hz             -   handle   of   open   zip   archive 
//                             index       -   index   number   (0   based)   of   item   in   zip 
//                             ze             -   pointer   to   a   ZIPENTRY   (if   ANSI)   or   ZIPENTRYW 
//                                                 struct   (if   Unicode) 
// 
//   Returns:           ZRESULT   -   ZR_OK   if   success,   otherwise   some   other   value 
// 
FindZipItem()   -   通过名称查找条目并返回相关信息///////////////////////////////////////////////////////////////// 
// 
//   FindZipItem() 
// 
//   Purpose:           Find   item   by   name   and   return   information   about   it 
// 
//   Parameters:     hz             -   handle   of   open   zip   archive 
//                             name         -   name   of   file   to   look   for   inside   zip   archive 
//                             ic             -   TRUE   =   case   insensitive 
//                             index       -   pointer   to   index   number   returned,   or   -1 
//                             ze             -   pointer   to   a   ZIPENTRY   (if   ANSI)   or   ZIPENTRYW 
//                                                 struct   (if   Unicode) 
// 
//   Returns:           ZRESULT   -   ZR_OK   if   success,   otherwise   some   other   value 
// 
UnzipItem()   -   通过索引找到相关条目并对其解压缩///////////////////////////////////////////////////////////////// 
// 
//   UnzipItem() 
// 
//   Purpose:           Find   item   by   index   and   unzip   it 
// 
//   Parameters:     hz             -   handle   of   open   zip   archive 
//                             index       -   index   number   of   file   to   unzip 
//                             dst           -   target   file   name   of   unzipped   file 
//                             len           -   for   memory   (ZIP_MEMORY.   length   of   buffer; 
//                                                 otherwise   0 
//                             flags       -   indicates   usage,   see   below;     for   files,   this 
//                                                 will   be   ZIP_FILENAME 
// 
//   Returns:           ZRESULT   -   ZR_OK   if   success,   otherwise   some   other   value 
// 
CloseZip()   -   关闭已存在的档案条目/////////////////////////////////////////////////////////////////
// 
//   CloseZip() 
// 
//   Purpose:           Close   an   open   zip   archive 
// 
//   Parameters:     hz             -   handle   to   an   open   zip   archive 
// 
//   Returns:           ZRESULT   -   ZR_OK   if   success,   otherwise   some   other   value 
// 
使用方法 
为了在你的工程中使用XZip,首先你需要在你的工程中添加以下文件:   

XZip.cpp   
XZip.h   
XUnzip.cpp   
XUnzip.h   
如果你在已包含XZip的工程中使用了precompiled   headers,那么你必须改变C/C++   Precompiled   Headers的设置,使用Not   using   precompiled   headers。(见常见问题2,soarlove注) 

接下来,在工程的适当文件中加入XZip.h和XUnzip.h声明。现在,你已经做好了使用XZip准备。在使用中有许多的注意事项,在使用函数时,请仔细查看相关函数中的说明。 

演示程序 
XZipTest.exe演示程序演示了在程序中使用XZip和XUnzip中API的方法。比如: 

                  

常见问题 
我可以在非MFC工程中使用XZip吗?   可以。这写函数可以在任何的Win32程序中使用。   
当我尝试把XZip.cpp文件引入我的MFC工程时,在XZip.cpp(2918)得到一个编译错误:   fatal   error   C1010:   unexpected   end   of   file   while   looking   for   precompiled   header   directive。怎样修复?   当你在工程中使用precompiled   headers时,
  那么你必须改变C/C++   Precompiled   Headers的设置,使用Not   using   precompiled   headers。如下图: 
                  

当我编译演示代码时,得到如下错误error       LINK   :   fatal   error   LNK1104:   cannot   open   file   "mfc42u.lib "   Error   executing   link.exe。怎样修复?   Visual   C++   v6.0在默认安装中没有安装Unicode库文件,所以产生了找不到mfc42u.lib或mfc42ud.lib的错误。修复方法,1.你可以使用VC++安装CD安装Unicode库文件。2.在Build
  |   Set   Active   Configuration中选择一个非Unicode编译配置。   
                  

我不需要使用Zip/Unzip函数,是否可以排斥(exclude)XZip.cpp/XUnzip.cpp文件?   可以,你只需要在你的工程中引入include你需要部分的.h/.cpp文件   
我可以在我们的共享/商业软件中使用XZip吗?   可以,你可以使用XZip,不需要支付任何的费用,但是你需要遵守在XZip.cpp文件中的关于使用Info-ZIP的限制。 

时间: 2024-11-10 07:12:29

文件的压缩与解压XZip,XUnzip的相关文章

HDFS中文件的压缩与解压

文件的压缩有两大好处:1.可以减少存储文件所需要的磁盘空间:2.可以加速数据在网络和磁盘上的传输.尤其是在处理大数据时,这两大好处是相当重要的. 下面是一个使用gzip工具压缩文件的例子.将文件/user/hadoop/aa.txt进行压缩,压缩后为/user/hadoop/text.gz 1 package com.hdfs; 2 3 import java.io.IOException; 4 import java.io.InputStream; 5 import java.io.Outpu

大文件(1g左右)-压缩、解压 大文件 C#

问题描述 压缩.解压 大文件 C# 如何用c#写一个压缩.解压的文件 文件大小为1G左右.我用 ICSharpCode.SharpZipLib.Zip;这个组件,只能实现小文件的压缩,不能实现大文件的压缩,一压缩就报错.哪位有什么好的方法实现大文件压缩呢. 解决方案 C# 文件压缩与解压c#解压.压缩文件C#下文件的压缩与解压

asp.net c# ZIP文件压缩与解压

asp教程.net c# zip文件压缩与解压 using system; using system.collections.generic; using system.text; using system.io; using icsharpcode.sharpziplib.zip; using system.diagnostics; using icsharpcode.sharpziplib.core; namespace testconsole {     class program    

Python实现压缩与解压gzip大文件的方法_python

本文实例讲述了Python实现压缩与解压gzip大文件的方法.分享给大家供大家参考,具体如下: #encoding=utf-8 #author: walker #date: 2015-10-26 #summary: 测试gzip压缩/解压文件 import gzip BufSize = 1024*8 def gZipFile(src, dst): fin = open(src, 'rb') fout = gzip.open(dst, 'wb') in2out(fin, fout) def gun

python用模块zlib压缩与解压字符串和文件的方法_python

python中zlib模块是用来压缩或者解压缩数据,以便保存和传输.它是其他压缩工具的基础.下面来一起看看python用模块zlib压缩与解压字符串和文件的方法.话不多说,直接来看示例代码. 例子1:压缩与解压字符串 import zlib message = 'abcd1234' compressed = zlib.compress(message) decompressed = zlib.decompress(compressed) print 'original:', repr(messa

Linux环境下安装RAR文件压缩与解压及命令应用方法

昨天老蒋帮助一个朋友的网站搬迁服务器,因为整个网站的数据有超过10GB大小,这位朋友还准备通过FTP工具一个个文件上传,按照其实用阿里云带宽1M计算,估计传完也要不少时间.于是我让其打包之后压缩包直接传,这样还可以节省点时间,等到传到一半左右的时候看到其实用的是RAR压缩方式,所以我知道后面得用到RAR的解压模式. 一般,我们在Linux环境中会使用ZIP或者TAR.GZ的压缩模式,只是我们以前的WIN环境中习惯用RAR而已,不过也不要紧在Linux中我们也可以操作的,只不过默认环境不是自带的需

Linux操作系统中,*.zip、*.tar、*.tar.gz、*.tar.bz2、*.tar.xz、*.jar、*.7z等格式的压缩与解压

zip格式 压缩: zip -r [目标文件名].zip [原文件/目录名] 解压: unzip [原文件名].zip 1 2 1 2 注:-r参数代表递归 tar格式(该格式仅仅打包,不压缩) 打包:tar -cvf [目标文件名].tar [原文件名/目录名] 解包:tar -xvf [原文件名].tar 1 2 1 2 注:c参数代表create(创建),x参数代表extract(解包),v参数代表verbose(详细信息),f参数代表filename(文件名),所以f后必须接文件名. t

asp.net SharpZipLib的压缩与解压问题_实用技巧

我使用SharpZipLib.dll中遇到的问题是:利用SharpZipLib压缩后生成的*.rar文件,利用其可以正常解压,但如果使用文件右击压缩生成的*.RAR文件,在解压过程中出错,具体报错信息:Wrong Local header signature: 0x21726152 ;但*.zip文件可正常解压. 具体压缩.解压代码实现参照网络上的代码,贴出概要代码: 复制代码 代码如下: /// <summary> /// 压缩文件 /// </summary> /// <

hadoop压缩与解压

1 压缩 一 般来说,计算机处理的数据都存在一些冗余度,同时数据中间,尤其是相邻数据间存在着相关性,所以可以通过一些有别于原始编码的特殊编码方式来保存数据, 使数据占用的存储空间比较小,这个过程一般叫压缩.和压缩对应的概念是解压缩,就是将被压缩的数据从特殊编码方式还原为原始数据的过程. 压缩广泛应用于海量数据处理中,对数据文件进行压缩,可以有效减少存储文件所需的空间,并加快数据在网络上或者到磁盘上的传输速度.在Hadoop中,压缩应用于文件存储.Map阶段到Reduce阶段的数据交换(需要打开相