我想使用 Delphi 的 7-Zip DLL,但找不到合适的文档或示例。有谁知道如何使用 Delphi 的 7-Zip DLL?
问问题
31481 次
7 回答
29
从 1.102 版开始,JEDI 代码库支持JclCompression单元中内置的7-Zip 。不过我自己还没用过。
于 2008-09-17T10:39:09.960 回答
25
扩展 Oliver Giesen 的答案,就像很多 JEDI 代码库一样,我找不到任何像样的文档,但这对我有用:
uses
JclCompression;
procedure TfrmSevenZipTest.Button1Click(Sender: TObject);
const
FILENAME = 'F:\temp\test.zip';
var
archiveclass: TJclDecompressArchiveClass;
archive: TJclDecompressArchive;
item: TJclCompressionItem;
s: String;
i: Integer;
begin
archiveclass := GetArchiveFormats.FindDecompressFormat(FILENAME);
if not Assigned(archiveclass) then
raise Exception.Create('Could not determine the Format of ' + FILENAME);
archive := archiveclass.Create(FILENAME);
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;
end;
于 2009-08-28T01:58:29.900 回答
6
7 压缩插件 API
于 2009-08-28T16:24:51.897 回答
4
没有 DLL 的 Zip 和 7z,试试 Synopse: http ://synopse.info/forum/viewtopic.php?pid=163
于 2011-09-04T18:21:13.600 回答
4
Delphi 现在在 XE2 中使用 TZipFile 提供原生的跨平台 zip 支持:
于 2011-12-05T21:40:22.507 回答
1
如果您打算仅将 7Zip 用于 zip 和 unzip,请查看TZip组件。我为自己的目的编写了一个小包装器,您可以在Zipper.pas文件中找到它,可以随意重用。
于 2008-09-18T11:08:10.583 回答
0
我尝试了许多解决方案并且遇到了问题,这个有效。
下载https://github.com/zedalaye/d7zip 将 7z.dll 和 Sevenzip.pas 复制到您的项目目录中,并将 Sevenzip.pas 添加到您的项目中。
然后你可以用它来解压:
using sevenzip;
procedure Unzip7zFile (zipFullFname:string);
var
outDir:string;
begin
with CreateInArchive(CLSID_CFormat7z) do
begin
OpenFile(zipFullFname);
outDir := ChangeFileExt(zipFullFname, '');
ForceDirectories (outDir);
ExtractTo(outDir);
end;
end;
用法:
Unzip7zFile(ExtractFilePath(Application.ExeName) + 'STR_SI_FULL_1000420.7z');
于 2017-03-04T22:24:14.093 回答