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

首頁 > 學(xué)院 > 開發(fā)設(shè)計(jì) > 正文

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

2019-11-15 02:30:50
字體:
供稿:網(wǎng)友

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

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();                        }                    }                }            }


上一篇:asp.net C#檢查URL是否有效

下一篇:委托

發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 温泉县| 沁源县| 新巴尔虎右旗| 大港区| 岑巩县| 枞阳县| 湛江市| 怀化市| 右玉县| 阜城县| 涿州市| 陆丰市| 镇平县| 广水市| 乐平市| 鄂托克旗| 包头市| 德钦县| 新田县| 阜城县| 五华县| 石泉县| 临沂市| 铜川市| 张北县| 衡阳县| 红安县| 普定县| 西藏| 伽师县| 大兴区| 通渭县| 三亚市| 浦东新区| 镇赉县| 新宾| 石城县| 洞头县| 盐边县| 遵义县| 云南省|