zlib是提供数据压缩用的函式库,由Jean-loup Gailly与Mark Adler所开发,初版0.9版在1995年5月1日发表。zlib使用DEFLATE算法,最初是为libpng函式库所写的,后来普遍为许多软件所使用。此函式库为自由软件,使用zlib授权。截至2007年3月,zlib是包含在Coverity的美国国土安全部赞助者选择继续审查的开源项目。 qlibzip 是基于zlib的一个实用程序库,使用Qt和Windows一些底层API实现,它主要用于将文件夹压缩到一个zip文件,或将一个zip文件解压缩到文件夹。 //------------------------------------------------------------------------------ // Description: Compress files to a ZIP file. // Parameter: sourceFiles Source files, supporting wildcards. // Parameter: destFile The ZIP file path. // Return Value: true/false. //------------------------------------------------------------------------------ extern "C" bool ZipCompress(const QString &sourceFiles, const QString &destFile); //------------------------------------------------------------------------------ // Description: Extract files from a ZIP file. // Parameter: sourceFile Source ZIP file. // Parameter: destFolder The folder to output files. The parent of the // specified folder MUST exist. // Return Value: true/false. //------------------------------------------------------------------------------ extern "C" bool ZipExtract(const QString &sourceFile, const QString &destFolder); //------------------------------------------------------------------------------ // Description: Extract special file from a ZIP file into memory block. // Parameter: sourceFile Source ZIP file. // Parameter: entryName Special entry name in ZIP file. // Return Value: Extracted memory block. //------------------------------------------------------------------------------ extern "C" QByteArray ZipExtractItem(const QString &sourceFile, const QString &entryName); 具体实例请看demo文件夹。
2021-12-02 19:35:59 1.17MB Zlib libZip Qt Windows
1
下载zlib-1.2.8.tar.gz包,
2021-11-29 18:54:16 558KB 下载zlib-1.2.8.tar
1
包含zlib-1.2.3.tar.gz 包含openssl-0.9.8d.tar.gz 包含openssh-4.6.tar.gz 三个源码打包下载
2021-11-29 11:20:27 4.54MB ssh openssh4.6p1 OpenSSL zlib
1
zlib1.2.11版本的简易调用(vs2019) 包含zlib1.2.11 x64和x86的debug/release版静态库和动态库
2021-11-25 08:31:18 587KB zlib c++ vs2019
1
zlib-1.2.11.tar.bz2 zlib
2021-11-24 16:06:05 528KB zlib
1
在ucos系统下移植zlib库和实现了zip文件解压缩,
2021-11-24 15:15:49 231KB ucos zip
1
使用zlib.h库文件进行简单的压缩和解压缩文件,附件只给出zlib.h库文件源代码,具体使用例子可以在网上搜索。
2021-11-20 01:16:47 37KB zlib.h 压缩解压缩
1
openssl-1.1.1a编译静态库 + zlib-1.2.11编译静态库 (x86 x64) 自己编译 最新版本openssl 和 依赖的 zlib
2021-11-19 16:05:36 138.28MB openssl-1.1. zlib-1.2.11
1
zlib 32位和64位 vs2015工程。打开后可以通过属性设置动态库或者静态库,release模式或者debug模式,方便调试。
2021-11-19 15:46:07 6.46MB zlib vs2015
1
将保存在内存中的gzip数据进行解压成可以阅读的数据
2021-11-17 17:26:37 55KB gzip解压
1