【转】XZip and XUnzip - Add zip and/or unzip to your app with no extra .lib or .dll
原文:http://www.codeproject.com/Articles/4135/XZip-and-XUnzip-Add-zip-and-or-unzip-to-your-app-w
Introduction
I have already introduced XZip in a previous article. This article presents XZip and also XUnzip, which together allow you to add zip and unzip to your application without using any .lib or .dll.
First, let me acknowledge the work of Lucian Wischik, who took the many .c and .h files from Info-ZIP and produced the .cpp and .h files that XZip is based on.
XZip and XUnzip Features
Most of the functions are demonstrated in the XZip demo app. Here are the main ones:
- CreateZip() - Create a zip archive file.
Collapse | Copy Code////////////////////////////////////////////////////////////////////////////// //// 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() - Add a file to a zip archive.
Collapse | Copy Code////////////////////////////////////////////////////////////////////////////// //// 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() - Open an existing zip archive file.
Collapse | Copy Code////////////////////////////////////////////////////////////////////////////// //// 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() - Get information about an item in an open zip archive.
Collapse | Copy Code////////////////////////////////////////////////////////////////////////////// //// 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() - Find item by name and return information about it.
Collapse | Copy Code////////////////////////////////////////////////////////////////////////////// //// 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() - Find item by index and unzip it.
Collapse | Copy Code////////////////////////////////////////////////////////////////////////////// //// 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() - Close an open zip archive.
Collapse | Copy Code////////////////////////////////////////////////////////////////////////////// //// 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 //
How To Use
To integrate XZip into your app, you first need to add following the files to your project:
- XZip.cpp
- XZip.h
- XUnzip.cpp
- XUnzip.h
If you include XZip in a project that uses precompiled headers, you must change C/C++ Precompiled Headerssettings to Not using precompiled headers for XZip.cpp and XUnzip.cpp.
Next, include the header files XZip.h and XUnzip.h in appropriate project files. Now you are ready to start using XZip. There are many notes concerning usage of various functions in XZip.h and XUnzip.h. Please read all function headers for each function you wish to use.
Known Limitations
XZip and XUnzip have been tested only with files.
Demo App
The XZipTest.exe demo tests the APIs in XZip and XUnzip. Here is some of the output:

Frequently Asked Questions
- Can I use XZip in non-MFC apps?
Yes. It has been implemented to compile with any Win32 program. - When I try to include XZip.cpp in my MFC project, I get the compiler error
XZip.cpp(2918) : fatal error C1010: unexpected end of file while looking for precompiled header directive. How can I fix this?
When using XZip in project that uses precompiled headers, you must change C/C++ Precompiled Headerssettings to Not using precompiled headers for XZip.cpp and XUnzip.cpp. Be sure to do this for All Configurations.

- When I try to build the demo app, I get the linker error
LINK : fatal error LNK1104: cannot open file "mfc42u.lib" Error executing link.exe. How can I fix this?
The default installation options of Visual C++ v6.0 don't install the Unicode libraries of MFC, so you might get an error that mfc42u.lib or mfc42ud.lib cannot be found. You can fix this either by installing the Unicode libs from the VC++ install CD, or by going to Build | Set Active Configuration and selecting one of the non-Unicode configurations.
You can configure the Visual Studio toolbars to include the Select Active Configuration combobox. This allows you to see at a glance what configuration you are working with.
- I don't need the Zip/Unzip functions. Can I exclude XZip.cpp/XUnzip.cpp?
Yes. You only need to include the .h/.cpp pair that you need. - Can we use XZip in our (shareware/commercial) app?
Yes, you can use XZip without charge or license fee, providing you follow the Info-ZIP restrictions as defined inXZip.cpp. - Does XZip handle pipes? in-memory zipping?
XZip has not been tested with anything other than files. - Can I use XZip in a VS2005 project?
Yes. There is a sample VS2005 project included in the download. - Does XZip work on Vista?
Yes.
Acknowledgments
- The code in XZip.cpp and XUnzip.cpp is included with the kind permission of Lucian Wischik. It is based on code from Info-ZIP. Please see XZip.cpp for Info-ZIP's copyright and restrictions.
- The CXListBox class is taken from my own article, XListBox - Owner-draw CListBox with selectable text and background colors.
Revision History
Version 1.3 - 2007 July 18
- Fixed problem with file size that is multiple of 16384, reported by Mathias Svensson.
- Fixed XZip to save file time in local time, suggested by Damir Valiulin.
Version 1.2 - 2007 June 30
- Added project for VS2005.
- Added
AddFolderContent()contributed by Renaud Deysine. - Fixed problem with
TUnzip::Open()reported by Pete Howells.Open()now returns correct success code. - Fixed several bugs reported by Warren Stevens.
- Fixed a problem in
unzReadCurrentFile()reported by Kochise. - Fixed bug in
EnsureDirectory()reported by craigmj. - Changed
ideflate()suggested by Michael B. Hansen. - Fixed problem with
time_treported by Ronney. - Fixed problems found by Boundschecker as reported by Warren Stevens.
- Made changes to
PUTSHORTandPUTBYTEmacros and toTZip::write(), suggested by vielheit.
Version 1.1 - 2003 May 7
- Initial public release
Usage
This software is released into the public domain. You are free to use it in any way you like, except that you may not sell this source code. If you modify it or extend it, please to consider posting new code here for everyone to share. This software is provided "as is" with no expressed or implied warranty. I accept no liability for any damage or loss of business that this software may cause.
License
This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)
【转】XZip and XUnzip - Add zip and/or unzip to your app with no extra .lib or .dll的更多相关文章
- Linux中zip压缩和unzip解压缩命令详解
文章转自:http://www.jb51.net/LINUXjishu/105916.html 1.把/home目录下面的mydata目录压缩为mydata.zipzip -r mydata.zip ...
- 每天一个linux命令(63):Linux中zip压缩和unzip解压缩命令详解
文章转自:http://www.jb51.net/LINUXjishu/105916.html 1.把/home目录下面的mydata目录压缩为mydata.zipzip -r mydata.zip ...
- CentOS中zip压缩和unzip解压缩命令详解
以下命令均在/home目录下操作cd /home #进入/home目录1.把/home目录下面的mydata目录压缩为mydata.zipzip -r mydata.zip mydata #压缩myd ...
- CentOS7中zip压缩和unzip解压缩命令详解
安装zip.unzip应用 yum install zip unzip 以下命令均在/home目录下操作cd /home #进入/home目录1.把/home目录下面的mydata目录压缩为mydat ...
- 使用gunzip、tar、rar、(zip压缩和unzip解压缩)
---------------------20171119------------------------------ 解压gz后缀 使用gunzip filename.gz ------------ ...
- CentOS Linux中zip压缩和unzip解压缩命令详解
以下命令均在/home目录下操作cd /home #进入/home目录1.把/home目录下面的mydata目录压缩为mydata.zip zip -r mydata.zip myda ...
- zip压缩工具,unzip解压缩工具
zip压缩工具,unzip解压缩工具=================== [root@aminglinux tmp]# yum install -y zip[root@aminglinux tmp] ...
- zip 压缩文件 unzip查看zip压缩包内的内容
[root@GitLab tmp]# zip -r new.zip ./* adding: gitlab_key_file20161001-2668-1eu44mv (deflated 15%) ...
- Centos中压缩(zip)和解压(unzip)命令
摘自:http://liuzhichao.com/p/681.html 1.我下载了一个yasuo.zip文件,想解压缩: # unzip yasuo.zip 2.我当前目录下有abc1.zip,ab ...
随机推荐
- centos下不重装php——给PHP添加新扩展库
装完php.发现需要一些新扩展库比如常见的mysqli之类的.在不重装php安装新扩展,以一个不常用的库xsl为例. 环境:centos6.8,php5.3.29 ,osx10.11.6 我的php相 ...
- git config简写命令
在多人协作开发时,一般用git来进行代码管理.git有一些命令如:git pull . git push等等,这些命令可以设置alias,也就是缩写.如:git pull 是 git pl, git ...
- C# Windows服务创建应用
创建项目 1.创建windows服务项目 2.右键点击Service1.cs,查看代码, 用于编写操作逻辑代码 3.OnStart函数在启动服务时执行,OnStop函数在停止服务时执行.代码中OnSt ...
- C#在不同平台下DLL的引用问题
缘起 很多时候,我们需要引用在不同平台下的DLL,32位(X86)和64位(X64).如果平台错误,在C#中会引发BadImageFormatException异常. 解决思路 我们同时不能添加不同平 ...
- linux创建日期文件名
linux创建文件名添加当前系统日期时间的方法 使用`date +%y%m%d` Example: mkdir `date +%y%m%d` tar cfvz /tmp/bak.`date +%y%m ...
- 工厂模式的C++、Java实现
1.工厂模式UML 图1. 工厂模式UML 2.C++实现 类视图如下: 图2. 工厂模式C++实现的类图 其中,Factory实现为: //工厂类. class Factory { public: ...
- 一道google的面试题(据说)
1. 原题(同事给的) Max Howell 参加了谷歌的面试,出题人竟然要求 Max Howell 在白板上作出解答,Max Howell 当然愤怒地拒绝了,回家以后马上在微博上跟我们分享他的吐槽: ...
- javascript图片预加载
图片预加载是非常常见的一个功能,PC和移动端都会用到,尤其是在移动端,只要涉及到较多图片的加载都会用到该技术.下面是移动端用到的,引入了zepto. <!DOCTYPE html> < ...
- [SYZOI Round1] 滑稽♂树
题面 传送门 Sol 我也不知道哪里来的题目哪里来的\(OJ\) 子树变成\(DFS\)序后就是裸的树套树 # include <bits/stdc++.h> # define RG re ...
- servlet中cookie和session操作
1.1 软件中的会话 一次会话: 打开浏览器 -> 访问一些服务器内容 -> 关闭浏览器 登录场景: 打开浏览器 -> 浏览到登陆页面 -> 输入用户名和密码 -> 访问 ...