应用介绍
zlib 是一个开源的 压缩和解压缩库,主要基于 Deflate 算法。它是无损数据压缩的一个通用工具,被广泛应用于各种系统和软件。它由 Jean-loup Gailly 和 Mark Adler 开发,于 1995 年首次发布。
zlib 的主要作用是提供高效的压缩和解压缩功能,同时保持数据的完整性,适用于需要减少数据存储或传输成本的场景。
加载环境
export LIBRARY_PATH=/opt/app/zlib/1.3.1/lib:$LIBRARY_PATH
export LD_LIBRARY_PATH=/opt/app/zlib/1.3.1/lib:$LD_LIBRARY_PATH
export C_INCLUDE_PATH=/opt/app/zlib/1.3.1/include:$C_INCLUDE_PATH
export CPATH=/opt/app/zlib/1.3.1/include:$CPATH
使用说明
先创建一个目录zlibtest并进入该目录:
mkdir $HOME/zlibtset
cd $HOME/zlibtset
在该目录下创建如下测试文件
zlib.c
#include <stdio.h>
#include <zlib.h>
int main(int argc,char **args)
{
/*原始数据*/
unsigned char strsrc[]="这些是测试数据。123456789 abcdefghigklmnopqrstuvwxyz\n\t\0abcdefghijklmnopqrstuvwxyz\n"; //包含\0字符
unsigned char buf[1024]={0};
unsigned char strdst[1024]={0};
unsigned long srclen=sizeof(strsrc);
unsigned long buflen=sizeof(buf);
unsigned long dstlen=sizeof(strdst);
int i;
FILE * fp;
printf("源串:");
for(i=0;i<srclen;++i)
{
printf("%c",strsrc[i]);
}
printf("原串长度为:%ld\n",srclen);
printf("字符串预计算长度为:%ld\n",compressBound(srclen));
//压缩
compress(buf,&buflen,strsrc,srclen);
printf("压缩后实际长度为:%ld\n",buflen);
//解压缩
uncompress(strdst,&dstlen,buf,buflen);
printf("目的串:");
for(i=0;i<dstlen;++i)
{
printf("%c",strdst[i]);
}
return 0;
}
test.c
#include <stdio.h>
#include <zlib.h>
int main()
{
/* 原始数据 */
unsigned char strSrc[] = "hello world! aaaaa bbbbb ccccc ddddd 中文测试 yes";
unsigned char buf[1024] = {0};
unsigned char strDst[1024] = {0};
unsigned long srcLen = sizeof(strSrc);
unsigned long bufLen = sizeof(buf);
unsigned long dstLen = sizeof(strDst);
printf("Src string:%s\nLength:%ld\n", strSrc, srcLen);
/* 压缩 */
compress(buf, &bufLen, strSrc, srcLen);
printf("After Compressed Length:%ld\n", bufLen);
/* 解压缩 */
uncompress(strDst, &dstLen, buf, bufLen);
printf("After UnCompressed Length:%ld\n",dstLen);
printf("UnCompressed String:%s\n",strDst);
return 0;
}
在该目录下编译文件并运行
gcc -o zlib zlib.c -lz
gcc -o test test.c -lz
./zlib
./test
程序结束后可得到如下结果

