使用GZipStream解压缩仅返回第一行

时间:2012-06-26 09:26:14

标签: c# gzip gzipstream

我一直致力于解析第三方fms日志的功能。日志是Gzip,所以我使用的解压缩功能适用于我们使用的任何其他Gzip文件。

解压缩这些文件时,我只得到压缩文件的第一行,没有例外,它只是找不到其余的字节,好像第一行有一个EOF。 我尝试使用Ionic.Zlib而不是System.IO.Compression,但结果是一样的。这些文件似乎没有任何损坏,使用Winrar解压缩它们。

如果有人知道如何解决这个问题,我将非常感谢你的帮助。 感谢

您可以在此处下载示例文件: http://www.adjustyourset.tv/fms_6F9E_20120621_0001.log.gz

这是我的减压功能:

    public static bool DecompressGZip(String fileRoot, String destRoot)
    {
        try
        {
            using (FileStream fileStram = new FileStream(fileRoot, FileMode.Open, FileAccess.Read))
            {
                using (FileStream fOutStream = new FileStream(destRoot, FileMode.Create, FileAccess.Write))
                {
                    using (GZipStream zipStream = new GZipStream(fileStram, CompressionMode.Decompress, true))
                    {
                        byte[] buffer = new byte[4096];
                        int numRead;

                        while ((numRead = zipStream.Read(buffer, 0, buffer.Length)) != 0)
                        {
                            fOutStream.Write(buffer, 0, numRead);
                        }
                        return true;
                    }
                }

            }
        }
        catch (Exception ex)
        {
            LogUtils.SaveToLog(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff"), "Eror decompressing " + fileRoot + " : " + ex.Message, Constants.systemLog, 209715200, 6);
            return false;
        }
    }

1 个答案:

答案 0 :(得分:3)

我已经把最后45分钟包围了这个问题,但我无法解释为什么它不起作用。不知何故,DeflateStream类没有正确解码您的数据。我写了自己的GZip解析器(我可以分享代码,如果有人想检查它),它读取所有标题并检查它们的有效性(以确保那里没有有趣的东西),然后使用DeflateStream来膨胀实际数据,但与你的文件,它仍然只是让我第一行。

如果我使用GZipStream使用你的日志文件重新压缩(首先用winrar解压缩后),那么我的解析器和你自己的样本都会再次解压缩。

网上似乎有一些关于微软实施Deflate的批评(http://www.virtualdub.org/blog/pivot/entry.php?id=335),所以可能是你找到了其中一个怪异。

但是,解决问题的一个简单方法是切换到SharZipLib(http://www.icsharpcode.net/opensource/sharpziplib/),我试了一下,它可以解压缩你的文件。

    public static void DecompressGZip(String fileRoot, String destRoot)
    {
        using (FileStream fileStram = new FileStream(fileRoot, FileMode.Open, FileAccess.Read))
        using (GZipInputStream zipStream = new GZipInputStream(fileStram))
        using (StreamReader sr = new StreamReader(zipStream))
        {
            string data = sr.ReadToEnd();
            File.WriteAllText(destRoot, data);
        }
    }