校园春色亚洲色图_亚洲视频分类_中文字幕精品一区二区精品_麻豆一区区三区四区产品精品蜜桃

主頁(yè) > 知識(shí)庫(kù) > .net壓縮功能實(shí)現(xiàn)方法

.net壓縮功能實(shí)現(xiàn)方法

熱門標(biāo)簽:云狐人工智能電話機(jī)器人 電銷機(jī)器人 數(shù)據(jù) ai電銷機(jī)器人對(duì)貸款有幫助嗎 福州人工智能電銷機(jī)器人加盟 宿遷智能外呼系統(tǒng)排名 400電話辦理信任翰諾科技 怎樣給陜西地圖標(biāo)注顏色 地圖標(biāo)注多少錢一張 廣州銷售外呼系統(tǒng)定制
復(fù)制代碼 代碼如下:

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 2.0 的壓縮功能代碼

標(biāo)簽:焦作 延安 宜春 大興安嶺 曲靖 黃南 綿陽(yáng) 新疆

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《.net壓縮功能實(shí)現(xiàn)方法》,本文關(guān)鍵詞  .net,壓縮,功能,實(shí)現(xiàn),方法,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《.net壓縮功能實(shí)現(xiàn)方法》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于.net壓縮功能實(shí)現(xiàn)方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    主站蜘蛛池模板: 通许县| 临汾市| 界首市| 金塔县| 承德县| 德兴市| 西充县| 黄骅市| 布尔津县| 天气| 吉隆县| 特克斯县| 杨浦区| 江源县| 通化市| 定西市| 乐业县| 阿荣旗| 邛崃市| 城固县| 团风县| 高碑店市| 治多县| 商洛市| 曲松县| 如皋市| 米林县| 永川市| 秦皇岛市| 湾仔区| 监利县| 酒泉市| 上思县| 青川县| 鱼台县| 文登市| 孝感市| 太仆寺旗| 屏南县| 沐川县| 镇雄县|