SharpZipLib - ZipException“System.ArgumentOutOfRangeException” - 为什么我会收到此异常?

时间:2010-12-14 06:53:08

标签: c# unzip sharpziplib

我正在使用SharpZipLib来解压缩文件。我的代码一直很好地用于所有zip文件,除了我正在提取的zip文件...

得到了这个例外:

System.ArgumentOutOfRangeException: Specified argument was out of the range of valid values.
Parameter name: length

size = s.Read(data, 0, data.Length);

引发了异常

这是我的代码......

 public static void UnzipFile(string sourcePath, string targetDirectory)
     {
        try
        {
            using (ZipInputStream s = new ZipInputStream(File.OpenRead(sourcePath)))
            {
                ZipEntry theEntry;
                while ((theEntry = s.GetNextEntry()) != null)
                {
                    //string directoryName = Path.GetDirectoryName(theEntry.Name);
                    string fileName = Path.GetFileName(theEntry.Name);

                    if (targetDirectory.Length > 0)
                    {
                        Directory.CreateDirectory(targetDirectory);
                    }

                    if (fileName != String.Empty)
                    {
                        using (FileStream streamWriter = File.Create(targetDirectory + fileName))
                        {
                            int size = 2048;
                            byte[] data = new byte[2048];
                            while (true)
                            {
                                size = s.Read(data, 0, data.Length);
                                if (size > 0)
                                {
                                    streamWriter.Write(data, 0, size);
                                }
                                else
                                {
                                    break;
                                }
                            }
                        }
                    }
                }
            }
        }
        catch (Exception ex)
        {
            throw new Exception("Error unzipping file \"" + sourcePath + "\"", ex);
        }
    }

3 个答案:

答案 0 :(得分:5)

对我来说看起来像个错误。幸运的是,您可以访问代码,因此您应该能够确切地看到它出错的地方。我建议您构建一个SharpZipLib的调试版本,打破抛出异常的行,并查看它实际测试的内容。

即使没有2K的数据,读入2K缓冲区应该没问题。

(我实际上不会完全按照你的方式编写代码,但这是另一回事。我也将它移到自己的实用程序方法中 - 将所有数据从一个流复制到另一个流的行为很常见没有必要把它绑在拉链上。)

答案 1 :(得分:-1)

查看代码,您将再次读取相同的字节集(并提升位置)。

size = s.Read(data, 0, data.Length);

来自here的示例显示第二个参数应该是移动位置&不是固定的数字。

答案 2 :(得分:-1)

将您的代码int size = 2048;更改为int size = data.Length;。你不会拿OutOfRange例外。

 using (FileStream streamWriter = File.Create(targetDirectory + fileName))
    {
       int size = data.Length;
       byte[] data = new byte[size];
       while (true)
       {
            size = s.Read(data, 0, data.Length);
            if (size > 0)
            {
                streamWriter.Write(data, 0, size);
            }
            else
            {
               break;
            }
       }
    }