I a looking for a library that can compress text. Not short string but rather pages. Is there any known library or openso开发者_如何学JAVAurce code?
You may take a look at GZipStream and/or DeflateStream.
.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/
there is SharpZipLib
精彩评论