⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gzipdemo.cpp

📁 数据压缩源代码和VC中使用DEMO
💻 CPP
字号:
// gzipdemo.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include "../GZipHelper.h"
int _tmain(int argc, _TCHAR* argv[])
{
	 char plainText[]="Plain text here";
	 CA2GZIP gzip(plainText,strlen(plainText));  // do compressing here;
	 LPGZIP pgzip=gzip.pgzip;  // pgzip is zipped data pointer, you can use it irectly
	 int len=gzip.Length;      // Length is length of zipped data;
  	 CGZIP2A plain(pgzip,len);  // do uncompressing here

	 char *pplain=plain.psz;    // psz is plain data pointer
	 int  aLen=plain.Length;    // Length is length of unzipped data.

	 printf("Size=%i  %s",aLen,pplain);
	 int X;
	 scanf("%d",&X);
	return 0;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -