2013年6月9日

C# GIZP解码

摘要: /// <summary> /// GZip解压函数 /// </summary> /// <param name="data"></param> /// <returns></returns> public byte[] GZipDecompress(byte[] data) { using (MemoryStream stream = new MemoryStream()) { using (GZipStream gZipStream... 阅读全文

posted @ 2013-06-09 10:20 HOT SUMMER 阅读(1116) 评论(0) 推荐(0)

导航