GZip解压.NET代码
来源:未知 责任编辑:责任编辑 发表时间:2014-05-20 18:33 点击:次
public static byte[] GZipDecompress(Byte[] bytes)
{
BinaryReader br = null;
System.IO.Compression.GZipStream dcmp = null;
try
{
using (MemoryStream ms = new MemoryStream(bytes))
{
dcmp = new System.IO.Compression.GZipStream(ms, System.IO.Compression.CompressionMode.Decompress);
br = new BinaryReader(dcmp);
return br.ReadBytes((int)dcmp.Length);
}
}
catch (System.Exception e)
{
}
finally
{
br.Close();
dcmp.Close();
}
return bytes;
}
摘自 appleII的博客
相关新闻>>
最新推荐更多>>>
- 发表评论
-
- 最新评论 更多>>