浙江省高等学校教师教育理论培训

微信搜索“毛凌志岗前心得”小程序

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
上一页 1 ··· 170 171 172 173 174 175 176 177 178 ··· 630 下一页

2013年3月31日

摘要: VC知识库文章-《C++字符串完全指引之一,》概要:"毫无疑问,我们都看到过像 TCHAR, std::string, BSTR 等各种各样的字符串类型,还有那些以 _tcs 开头的奇怪的宏。你也许正在盯着显示器发愁。本指引将总结引进各种字符类型的目的,展示一些简单的用法,并告诉您在必要时,如何实现各种字符串类型之间的转换。"C++字符串完全指引之一 阅读全文
posted @ 2013-03-31 15:20 lexus 阅读(193) 评论(0) 推荐(0)

摘要: gzip - Wikipedia, the free encyclopediagzip From Wikipedia, the free encyclopedia Jump to: navigation, search GNU Gzip Developer(s)GNU ProjectStable release1.5 (June17,2012; 9 months ago(20... 阅读全文
posted @ 2013-03-31 15:01 lexus 阅读(243) 评论(0) 推荐(0)

摘要: tcpip数据包编码解析(chunk and gzip)_space of Jialy_百度空间// 使用zlib库的代码#include "zlib/zlib.h"void uncompresstorrent(char *src, char *dst){ gzFile *gzfp=gzopen(src,"rb"); FILE *fp=fopen(dst,"wb"); char in[CHU... 阅读全文
posted @ 2013-03-31 14:56 lexus 阅读(293) 评论(0) 推荐(0)

摘要: 使用boost::iostreams库压缩和解压数据 - 伯诚的Blog - 博客频道 - CSDN.NET使用boost::iostreams库压缩和解压数据 分类: boost 2013-01-06 17:11 92人阅读 评论(0) 收藏 举报boostBoostiostreams今天项目中正好要用到gzip对数据进行压缩,正好查到了boost::iostream... 阅读全文
posted @ 2013-03-31 14:37 lexus 阅读(1389) 评论(0) 推荐(0)

摘要: Deflate Compression Algorithm Implemented in High Level Language? - Stack OverflowDeflate Compression Algorithm Implemented in High Level Language? 阅读全文
posted @ 2013-03-31 14:32 lexus 阅读(216) 评论(0) 推荐(0)

摘要: Index of /projects/pyflateIndex of /projects/pyflate Name Last modified Size Description Parent Directory 27-Mar-2009 00:26 - README.... 阅读全文
posted @ 2013-03-31 14:31 lexus 阅读(315) 评论(0) 推荐(0)

摘要: miniz - Single C source file Deflate/Inflate compression library with zlib-compatible API, ZIP archive reading/writing, PNG writing - Google Project Hostingminiz.c is a lossless, high performance data... 阅读全文
posted @ 2013-03-31 14:08 lexus 阅读(281) 评论(0) 推荐(0)

摘要: CGZip, a C++ wrapper for gzip methods - CodeProjectCGZip, a C++ wrapper for gzip methodsBy Jonathan de Halleux, 9 Dec 2002 4.45 (28 votes)123454.45/5 - 28 votes3 removedμ 4.35, σa 2.80 [?]Dow... 阅读全文
posted @ 2013-03-31 13:57 lexus 阅读(481) 评论(0) 推荐(0)

摘要: http://www.gzip.org/algorithm.txt1. Compression algorithm (deflate) The deflation algorithm used by gzip (also zip and zlib) is a variation of LZ77 (Lempel-Ziv 1977, see reference below). It finds du... 阅读全文
posted @ 2013-03-31 13:54 lexus 阅读(552) 评论(0) 推荐(0)

摘要: gzip压缩算法: gzip 所使用压缩算法的基本原理_凡间_百度空间gzip压缩算法: gzip 所使用压缩算法的基本原理1 gzip 所使用压缩算法的基本原理gzip 对于要压缩的文件,首先使用LZ77算法的一个变种进行压缩,对得到的结果再使用Huffman编码的方法(实际上gzip根据情况,选择使用静态Huffman编码或者动态Huffman编码,详细内容在实现中说明)进行压缩。所以明白了L... 阅读全文
posted @ 2013-03-31 13:49 lexus 阅读(606) 评论(0) 推荐(0)

摘要: gzip 与 deflate :gzip算法原理深入分析 -gzip 与 deflate :gzip算法原理深入分析 [复制链接] verohan verohan 当前离线Q豆22 Q币0 在线时间1 小时积分35精华1阅读权限150注册时间2011-4-22最后登录2011-6-16帖子7 窥视卡 雷达卡4主题 1听众 35积分官方团队Q豆22 Q币0 注册时间2011-4-... 阅读全文
posted @ 2013-03-31 13:41 lexus 阅读(2358) 评论(0) 推荐(0)

摘要: 自己动手写web服务器四(web服务器是如何通过压缩数据,web服务器的gzip模块的实现) - 任天胜的个人空间 - 开源中国社区自己动手写web服务器四(web服务器是如何通过压缩数据,web服务器的gzip模块的实现) 阅读全文
posted @ 2013-03-31 13:32 lexus 阅读(170) 评论(0) 推荐(0)

摘要: Decompressing a GZip Stream with Zlib Decompressing a GZip Stream with Zlib Contents Introduction Download Source Related Links Introduction This C++ program reads a file named input.txt.gz into memor... 阅读全文
posted @ 2013-03-31 13:22 lexus 阅读(410) 评论(0) 推荐(0)

摘要: how to decompress gzip stream with zlibhow to decompress gzip stream with zlibI'm posting this in my journal because it trips me up every time I have to do this, and I need something googleable so I c... 阅读全文
posted @ 2013-03-31 13:18 lexus 阅读(445) 评论(0) 推荐(0)

摘要: Frequently Asked Questions about zlibWell that's nice, but how do I make a gzip file in memory?You can request that deflate write the gzip format instead of the zlib format using deflateInit2(). Y... 阅读全文
posted @ 2013-03-31 13:16 lexus 阅读(198) 评论(0) 推荐(0)

摘要: gzip 解压_简简单单_百度空间问题: 入问题,问题答案立即呈现在您眼前!gzip格式rfc 1952 http://www.ietf.org/rfc/rfc1952.txtdeflate格式rfc 1951 http://www.ietf.org/rfc/rfc1951.txtzlib开发库 http://www.zlib.net/manual.html寻找gzip 获取一个网页数据返回的编码... 阅读全文
posted @ 2013-03-31 13:14 lexus 阅读(289) 评论(0) 推荐(0)

摘要: Zlib与GZip - woaidongmao - C++博客Zlib与GZip zlib是一个通用的压缩开源库,提供了在内存中压缩和解压的函数,包括对解压后数据的校验。目前版本的zlib只支持deflate方法,但是其它的方法将会被添加进来并且拥有同样的接口。—— zlib manaul deflate算法在rfc1951中有详细的说明。 zlib同时又是一种数据格式,使用zlib库压缩后的数据... 阅读全文
posted @ 2013-03-31 13:10 lexus 阅读(761) 评论(0) 推荐(0)

摘要: zlib库解压http报文中的gzip数据_bluemonster_新浪博客zlib库解压http报文中的gzip数据[此博文包含图片] (2010-09-02 11:27:20)转载▼标签:zlibhttpgzip解压it 分类: 实验室抓HTTP包的时候发现很多网站的响应报文是gzip压缩后的数据,存放在一个或多个chunk里面(参见HTTP响应报文中的chunked)。这些gzip数据是不可... 阅读全文
posted @ 2013-03-31 13:09 lexus 阅读(598) 评论(0) 推荐(0)

摘要: Frequently Asked Questions about zlibWhat's the difference between the "gzip" and "deflate" HTTP 1.1 encodings?"gzip" is the gzip format, and "deflate" is the zlib format. They should probably hav... 阅读全文
posted @ 2013-03-31 13:03 lexus 阅读(215) 评论(0) 推荐(0)

摘要: Frequently Asked Questions about zlibWhat's the difference between the "gzip" and "deflate" HTTP 1.1 encodings? 阅读全文
posted @ 2013-03-31 13:01 lexus 阅读(140) 评论(0) 推荐(0)

上一页 1 ··· 170 171 172 173 174 175 176 177 178 ··· 630 下一页