.NET 有文本压缩库吗?
我正在寻找一个可以压缩文本的库。不是短字符串而是页面。 是否有任何已知的库或开源代码?
I a looking for a library that can compress text. Not short string but rather pages.
Is there any known library or opensource code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以查看 GZipStream 和/或DeflateStream。
You may take a look at GZipStream and/or DeflateStream.
.Net 有几个内置的用于压缩/解压缩的类:Gzip 和 Deflate。
http://msdn.microsoft.com/en-us /library/system.io.compression.gzipstream.aspx
http://msdn.microsoft.com/en-us/library/system.io.compression.deflatestream.aspx
示例用法:
http://www.csharphelp.com/2007/ 09/压缩和解压缩字符串-in-c/
.Net has a couple of classes built-in for compression/decompression, Gzip and Deflate.
http://msdn.microsoft.com/en-us/library/system.io.compression.gzipstream.aspx
http://msdn.microsoft.com/en-us/library/system.io.compression.deflatestream.aspx
Example usage:
http://www.csharphelp.com/2007/09/compress-and-decompress-strings-in-c/
有 SharpZipLib
there is SharpZipLib