21

我有一个奇怪的文件,当用 DotNetZip 压缩时会创建一个“不可解压缩”的存档。当我尝试用 7zip 解压缩它时,它失败了CRC failed in 'AjaxControlToolkit.dll'. File is broken.当我用 7zip 手动压缩它时,它解压缩得很好。

有没有人遇到过 DotNetZip 无法正确压缩简单二进制文件的情况?还是我错误地使用了 DotNetZip?

https://dl.dropbox.com/u/65419748/AjaxControlToolkit.dll

using System.IO;
using Ionic.Zip;

namespace ConsoleApplication1
{
    public class Program
    {
        public static void Main(string[] args)
        {
            var source = new FileInfo(@"C:\ZipDemo\AjaxControlToolkit.dll");
            var target = new FileInfo(Path.ChangeExtension(source.FullName, "zip"));
            var folder = new DirectoryInfo(Path.ChangeExtension(source.FullName, null));

            if (target.Exists)
                target.Delete();

            if (folder.Exists)
                folder.Delete(true);

            using (var zip = new ZipFile(target.FullName))
            {
                zip.AddFile(source.FullName, string.Empty);
                zip.Save();
            }

            using (var zip = new ZipFile(target.FullName))
                zip.ExtractAll(folder.FullName);
        }
    }
}

抛出:

Unhandled Exception: Ionic.Zip.BadReadException: bad read of entry AjaxControlToolkit.dll from compressed archive.
   at Ionic.Zip.ZipEntry._CheckRead(Int32 nbytes)
   at Ionic.Zip.ZipEntry.ExtractOne(Stream output)
   at Ionic.Zip.ZipEntry.InternalExtract(String baseDir, Stream outstream, String password)
   at Ionic.Zip.ZipFile._InternalExtractAll(String path, Boolean overrideExtractExistingProperty)
   at Ionic.Zip.ZipFile.ExtractAll(String path)
   at ConsoleApplication1.Program.Main(String[] args) in C:\ZipDemo\ConsoleApplication1\ConsoleApplication1\Program.cs:line 27

编辑:

如果我添加一个额外的字节,它就可以正常工作,但这不是一个可接受的解决方案。没有+ 1.

var bytes = new byte[source.Length + 1];
File.ReadAllBytes(source.FullName).CopyTo(bytes, 0);
zip.AddEntry(source.Name, bytes);

更新:

放弃并切换到 SharpZipLib,因为它不会因为简单的提取而崩溃,但肯定会很高兴知道 DotNetZip 出了什么问题,它有一个更好的 API。

更新2:

关于文件长度的一些东西使它爆炸,1179647 和 1179649 字节被正确压缩和解压缩。

var source = new FileInfo(@"C:\ZipDemo\foo.txt");
using (var writer = source.CreateText())
    writer.Write(new string('a', 1179648));
4

3 回答 3

17

您的 dll 大小为 53*128k (6954496/131072 = 53),DotNetZip 中有一个错误,您可以在此处阅读:https ://dotnetzip.codeplex.com/workitem/14087 。只需在您的代码中使用:

zip.ParallelDeflateThreshold = -1;

我对很多文件都有这个问题,现在它工作得很好;)

于 2013-08-20T15:35:48.747 回答
4

这是一个错误 - 您可以在Zlib\ParallelDeflateOutputStream.cs.

改变

} while (doAll && (_lastWritten != _latestCompressed));

} while (doAll && (_lastWritten != _lastFilled)); 

有关详细信息,请参阅https://dotnetzip.codeplex.com/workitem/14087

于 2013-08-20T15:08:58.327 回答
2

我试过这个 -

  • 安装最新版本的 DotNetZip
  • 运行你的代码。
  • 得到 BadReadException

那么这个——

  • 安装旧版本 (1.9) 的 DotNetZip。( Install-Package DotNetZip -Version 1.9)
  • 运行你的代码
  • 代码工作正常。

我想这可能是一个错误?

于 2013-03-11T12:52:44.260 回答