0

我正在尝试使用 JEDI JCL 使用 Delphi 2007 压缩一些文件。问题是我无法弄清楚为什么我不断收到此错误“ Sevenzip: Failed to load 7z.dll

我的代码是:

var
   archiveclass: TJclDecompressArchiveClass;
   archive: TJclDecompressArchive;
   item: TJclCompressionItem;
   s: String;
   i: Integer;
begin
   archiveclass := GetArchiveFormats.FindDecompressFormat(dir);

   if not Assigned(archiveclass) then
      raise Exception.Create('Could not determine the Format of ' + dir);

   archive := archiveclass.Create(dir);
   try
      if not (archive is TJclSevenZipDecompressArchive) then
         raise Exception.Create('This format is not handled by 7z.dll');

      archive.ListFiles;

      s := Format('test.zip Item Count: %d'#13#10#13#10, [archive.ItemCount]);

      for i := 0 to archive.ItemCount - 1 do
      begin
         item := archive.Items[i];
         case item.Kind of
            ikFile:
               s := s + IntToStr(i+1) + ': ' + item.PackedName + #13#10;
            ikDirectory:
               s := s + IntToStr(i+1) + ': ' + item.PackedName + '\'#13#10;//'
         end;
      end;

      if archive.ItemCount > 0 then
      begin
//         archive.Items[0].Selected := true;
//         archive.ExtractSelected('F:\temp\test');

         archive.ExtractAll('F:\temp\test');
      end;

      ShowMessage(s);
   finally
      archive.Free;
   end;

我在与 Delphi 项目相同的文件夹中有 7z.dll。我究竟做错了什么?还有其他简单的方法可以对文件夹进行 7z 处理吗?我不是在寻找一些复杂的任务,只是为了从文件夹中创建一个 zip。

4

1 回答 1

5

JCLCompression 单元仅将 7z API 包装在 JCLCompression 类中。7z API 本身位于SevenZip.pas单元中(在JCL 源代码的windows文件夹中)。这是加载 7z.dll 的地方(需要时通过Load7Zip例程)。

您似乎正在通过动态链接到该 DLL 来编译项目,导致 DLL 仅在需要时加载,而不是加载并与您的 EXE 链接。加载失败以及您在异常中看到的错误消息表明在运行时查找或加载该 DLL 时存在问题。

检查事项:

  • 确保7z.dll与您的 EXE位于同一文件夹中不是DPR 源文件,而是运行时的 EXE)

  • 确保您使用的7z.dll是 32 位的Delphi 2007仅生成 32 位可执行文件,因此即使在 64 位操作系统上,您的 Delphi 应用程序仍需要32 位版本的 7z.dll

于 2014-12-17T19:24:31.687 回答