日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 编程语言 > C# >内容正文

C#

C#自定义字符串压缩和解压缩源码库

發(fā)布時(shí)間:2023/12/6 C# 50 豆豆
生活随笔 收集整理的這篇文章主要介紹了 C#自定义字符串压缩和解压缩源码库 小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
如下的內(nèi)容是關(guān)于C#自定義字符串壓縮和解壓縮庫(kù)的內(nèi)容。

class ZipLib{public static string Zip(string value){byte[] byteArray = new byte[value.Length];int indexBA = 0;foreach (char item in value.ToCharArray()){byteArray[indexBA++] = (byte)item;}System.IO.MemoryStream ms = new System.IO.MemoryStream();System.IO.Compression.GZipStream sw = new System.IO.Compression.GZipStream(ms,System.IO.Compression.CompressionMode.Compress);sw.Write(byteArray, 0, byteArray.Length);sw.Close();byteArray = ms.ToArray();System.Text.StringBuilder sB = new System.Text.StringBuilder(byteArray.Length);foreach (byte item in byteArray){sB.Append((char)item);}ms.Close();sw.Dispose();ms.Dispose();return sB.ToString();}public static string UnZip(string value){byte[] byteArray = new byte[value.Length];int indexBA = 0;foreach (char item in value.ToCharArray()){byteArray[indexBA++] = (byte)item;}System.IO.MemoryStream ms = new System.IO.MemoryStream(byteArray);System.IO.Compression.GZipStream sr = new System.IO.Compression.GZipStream(ms,System.IO.Compression.CompressionMode.Decompress);byteArray = new byte[byteArray.Length];int rByte = sr.Read(byteArray, 0, byteArray.Length);System.Text.StringBuilder sB = new System.Text.StringBuilder(rByte);for (int i = 0; i < rByte; i++){sB.Append((char)byteArray[i]);}sr.Close();ms.Close();sr.Dispose();ms.Dispose();return sB.ToString();}}代碼使用方法string str_org="aaaaaaaaaabbbbbbbbbbbbcccccccccdddddddd";string str_comp = ZipLib.Zip(str_org);Console.WriteLine("str_comp:" + str_comp);string str_uncomp = ZipLib.UnZip(str_comp);Console.WriteLine("str_uncomp:" + str_uncomp);Console.ReadLine(); 復(fù)制代碼? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?


創(chuàng)作挑戰(zhàn)賽新人創(chuàng)作獎(jiǎng)勵(lì)來(lái)咯,堅(jiān)持創(chuàng)作打卡瓜分現(xiàn)金大獎(jiǎng)

總結(jié)

以上是生活随笔為你收集整理的C#自定义字符串压缩和解压缩源码库的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。