摘要: public object DeCompress(string fileName) { object obj = null; try { using (Stream source = File.OpenRead(fileName)) { using (Stream destination = new MemoryStream()) { using (GZipStream input = new GZipStream(source, CompressionMode.Decompress, true)) { byte[] bytes = new byte[4096]; int n; while ( 阅读全文
posted @ 2011-08-30 09:41 94cool 阅读(252) 评论(0) 推荐(0)