Really simple short string compression

后端 未结 9 1313
感动是毒
感动是毒 2020-12-01 16:21

Is there a really simple compression technique for strings up to about 255 characters in length (yes, I\'m compressing URLs)?

I am not concerned with the strength o

9条回答
  •  囚心锁ツ
    2020-12-01 16:43

    I would start with trying one of the existing (free or open source) zip libraries, e.g. http://www.icsharpcode.net/OpenSource/SharpZipLib/

    Zip should work well for text strings, and I am not sure if it is worth implementing a compression algorithm yourserlf....

提交回复
热议问题