我想使用Delphi的7-Zip DLL,但找不到合适的文档或示例。有谁知道如何使用Delphi中的7-Zip DLL?
从1.102版开始,JEDI代码库支持JclCompression单元内置的7-Zip。不过,我自己还没有使用过它。
像许多JEDI代码库一样,扩展了Oliver Giesen的答案,我找不到任何合适的文档,但这对我有用:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
| 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; |
7个Zip插件API
http://www.progdigy.com/?page_id=13
Delphi现在在XE2中具有TZipFile的本机跨平台zip支持:
如何在Delphi XE2和FireMonkey中使用TZipFile提取zip文件
Zip和7z没有DLL,请尝试Synopse:
http://synopse.info/forum/viewtopic.php?pid=163
如果仅打算将7Zip用于zip和unzip,请查看TZip组件。
我已经为我自己编写了一个小的package程序,您可以在Zipper.pas文件中找到它,可以随时重复使用。
我尝试了许多解决方案,但遇到了问题,这一解决方案奏效了。
下载https://github.com/zedalaye/d7zip
将7z.dll和sevenzip.pas复制到您的项目目录中,然后将sevenzip.pas添加到您的项目中。
然后您可以使用它来解压缩:
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| 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; |
用法:
1
| Unzip7zFile(ExtractFilePath(Application.ExeName) + 'STR_SI_FULL_1000420.7z'); |