首页
Web开发
Windows程序
编程语言
数据库
移动开发
系统相关
微信
其他好文
会员
首页
>
其他好文
> 详细
使用ZLib库压缩解压缩Demo
时间:
2015-05-15 17:41:17
阅读:
173
评论:
0
收藏:
0
[点我收藏+]
标签:
头文件:
#include "zlib.h"
编译:
需要加上 -lz
解压缩:
#define CHUNK 100000
int
decodeZip
(
char
*
source
,
int
len
,
char
*
*
dest
)
{
int
ret
;
unsigned have
;
z_stream strm
;
unsigned char out
[
CHUNK
]
;
int
totalsize
=
0
;
/
*
allocate inflate state
*
/
strm
.
zalloc
=
Z_NULL
;
strm
.
zfree
=
Z_NULL
;
strm
.
opaque
=
Z_NULL
;
strm
.
avail_in
=
0
;
strm
.
next_in
=
Z_NULL
;
ret
=
inflateInit2
(
&
strm
,
31
)
;
if
(
ret
!
=
Z_OK
)
return ret
;
strm
.
avail_in
=
len
;
strm
.
next_in
=
(
unsigned char
*
)
source
;
/
*
run inflate
(
)
on
input
until
output buffer
not
full
*
/
do
{
strm
.
avail_out
=
CHUNK
;
strm
.
next_out
=
out
;
ret
=
inflate
(
&
strm
,
Z_NO_FLUSH
)
;
switch
(
ret
)
{
case
Z_NEED_DICT
:
ret
=
Z_DATA_ERROR
;
/
*
and
fall through
*
/
case
Z_DATA_ERROR
:
case
Z_MEM_ERROR
:
inflateEnd
(
&
strm
)
;
return ret
;
}
have
=
CHUNK
-
strm
.
avail_out
;
totalsize
+
=
have
;
*
dest
=
(
char
*
)
realloc
(
*
dest
,
totalsize
)
;
memcpy
(
*
dest
+
totalsize
-
have
,
out
,
have
)
;
}
while
(
strm
.
avail_out
=
=
0
)
;
/
*
clean up
and
return
*
/
inflateEnd
(
&
strm
)
;
return ret
=
=
Z_STREAM_END
?
Z_OK
:
Z_DATA_ERROR
;
}
压缩:
#define MaxLen 10000000
/
*
*
*
对内容进行压缩和编码工作
*
/
void encodeZip
(
const
string
&
buffer
,
string
&
zipBuf
,
int
&
zipLen
)
{
unsigned char _zipSrc[MaxLen];
unsigned char _zipDst[MaxLen];
unsigned char
_scBuffer[MaxLen
];
/
/
先对原始内容进行压缩工作
unsigned
int
tmpLen
=
buffer
.
length
(
)
;
memcpy
(
_zipSrc
,
buffer
.
c_str
(
)
,
tmpLen
)
;
z_stream c_stream
;
c_stream
.
zalloc
=
(
alloc_func
)
0
;
c_stream
.
zfree
=
(
free_func
)
0
;
c_stream
.
opaque
=
(
voidpf
)
0
;
c_stream
.
next_in
=
(
Bytef
*
)
_zipSrc
;
c_stream
.
avail_in
=
tmpLen
;
c_stream
.
next_out
=
(
Bytef
*
)
_zipDst
;
c_stream
.
avail_out
=
(
unsigned
int
)
MaxLen
;
int
ret
=
deflateInit2
(
&
c_stream
,
Z_DEFAULT_COMPRESSION
,
Z_DEFLATED
,
31
,
8
,
Z_DEFAULT_STRATEGY
)
;
if
(
ret
!
=
Z_OK
)
{
cout
<
<
"|"
<
<
"deflateInit2 error "
<
<
endl
;
return
;
}
ret
=
deflate
(
&
c_stream
,
Z_FINISH
)
;
if
(
ret
!
=
Z_STREAM_END
)
{
deflateEnd
(
&
c_stream
)
;
cout
<
<
"|"
<
<
"ret != Z_STREAM_END err="
<
<
ret
<
<
endl
;
return
;
}
zipLen
=
c_stream
.
total_out
;
ret
=
deflateEnd
(
&
c_stream
)
;
if
(
ret
!
=
Z_OK
)
{
cout
<
<
"|"
<
<
"deflateEnd error "
<
<
endl
;
return
;
}
/
/
压缩完毕进行返回包组织
memcpy
(
_scBuffer
,
_zipDst
,
zipLen
)
;
zipBuf
=
string
(
_scBuffer
,
zipLen
)
;
return
;
}
使用ZLib库压缩解压缩Demo
标签:
原文地址:http://blog.csdn.net/ghevinn/article/details/45747485
踩
(
0
)
赞
(
0
)
举报
评论
一句话评论(
0
)
登录后才能评论!
分享档案
更多>
2021年07月29日 (22)
2021年07月28日 (40)
2021年07月27日 (32)
2021年07月26日 (79)
2021年07月23日 (29)
2021年07月22日 (30)
2021年07月21日 (42)
2021年07月20日 (16)
2021年07月19日 (90)
2021年07月16日 (35)
周排行
更多
分布式事务
2021-07-29
OpenStack云平台命令行登录账户
2021-07-29
getLastRowNum()与getLastCellNum()/getPhysicalNumberOfRows()与getPhysicalNumberOfCells()
2021-07-29
【K8s概念】CSI 卷克隆
2021-07-29
vue3.0使用ant-design-vue进行按需加载原来这么简单
2021-07-29
stack栈
2021-07-29
抽奖动画 - 大转盘抽奖
2021-07-29
PPT写作技巧
2021-07-29
003-核心技术-IO模型-NIO-基于NIO群聊示例
2021-07-29
Bootstrap组件2
2021-07-29
友情链接
兰亭集智
国之画
百度统计
站长统计
阿里云
chrome插件
新版天听网
关于我们
-
联系我们
-
留言反馈
© 2014
mamicode.com
版权所有 联系我们:gaon5@hotmail.com
迷上了代码!