国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > .NET > 正文

.net實現壓縮功能的方法

2024-07-10 12:54:10
字體:
來源:轉載
供稿:網友

?關于.net壓縮功能有很多的小伙伴們不知道該如何去實現,那么現在本文就將為大家介紹.net實現壓縮功能的方法,其實.net壓縮功能沒有我們想象中的那么復雜,下面我們就一起去參考參考吧。

復制代碼 代碼如下:

public static class Compressor??? {

??????????? public static byte[] Compress(byte[] data)
??????????? {
??????????????? using (MemoryStream output = new MemoryStream())
??????????????? {
??????????????????? using (GZipStream gzip = new GZipStream(output, CompressionMode.Compress, true))
??????????????????? {
??????????????????????? gzip.Write(data, 0, data.Length);
??????????????????????? gzip.Close();
??????????????????????? return output.ToArray();
??????????????????? }
??????????????? }
??????????? }

??????????? public static byte[] Decompress(byte[] data)
??????????? {
??????????????? using (MemoryStream input = new MemoryStream())
??????????????? {
??????????????????? input.Write(data, 0, data.Length);
??????????????????? input.Position = 0;
??????????????????? using (GZipStream gzip = new GZipStream(input, CompressionMode.Decompress, true))
??????????????????? {
??????????????????????? using (MemoryStream output = new MemoryStream())
??????????????????????? {
??????????????????????????? byte[] buff = new byte[64];
??????????????????????????? int read = -1;
??????????????????????????? read = gzip.Read(buff, 0, buff.Length);
??????????????????????????? while (read > 0)
??????????????????????????? {
??????????????????????????????? output.Write(buff, 0, read);
??????????????????????????????? read = gzip.Read(buff, 0, buff.Length);
??????????????????????????? }
??????????????????????????? gzip.Close();
??????????????????????????? return output.ToArray();
??????????????????????? }
??????????????????? }
??????????????? }
??????????? }

看完本文關于.net實現壓縮功能的方法后你是不是明白了呢?想了解更多的ASP.NET知識就請關注我們錯新技術頻道吧!?

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 灵川县| 新绛县| 乐至县| 广汉市| 宿松县| 德阳市| 惠州市| 德清县| 边坝县| 东莞市| 静安区| 连州市| 临漳县| 天长市| 珠海市| 土默特右旗| 贺州市| 油尖旺区| 长岛县| 唐海县| 灵台县| 青海省| 富平县| 乐都县| 崇仁县| 乌鲁木齐县| 喀喇沁旗| 石渠县| 龙泉市| 昭苏县| 沅江市| 汕尾市| 芷江| 尚义县| 抚顺市| 闽侯县| 乌兰县| 将乐县| 铜梁县| 丹阳市| 宁明县|