7z在Delphi 2007中

时间:2014-12-17 13:56:45

标签: delphi delphi-2007 7zip jedi

我尝试使用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;

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

1 个答案:

答案 0 :(得分: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 。 / p>