如何使用 Delphi 将多个文件压缩到一个存档中

发布于 2024-07-10 04:56:44 字数 197 浏览 4 评论 0原文

我需要使用 Delphi 将多个文件压缩到一个存档中。 我更喜欢使用免费软件组件或开源组件,因为我非常非常便宜:-)

我的主要要求是:

  1. 可以对存档进行加密
  2. 可以创建任何拥有 WinZip 副本的人都可以打开的公共存档

有谁有他们使用过的组件的建议? 请随时推荐免费和商业组件/库。

I need to compress multiple files into a single archive using Delphi. I'd prefer to use freeware components or open-source components because I am very very cheap :-)

My primary requirements are:

  1. Possible to encrypt the archive
  2. Can create common archives that can be opened by anyone with a copy of WinZip

Does anyone have suggestions with components that they have used? Please feel free to suggest free as well as commercial components/libraries.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(8

不弃不离 2024-07-17 04:56:44

也许 DelphiZip 就是您正在寻找的,它似乎也支持加密,并且与 WinZip 兼容。 它是在 LGPL 下发布的。

Perhaps DelphiZip is what you are looking for, it seems to support encryption, too, and is WinZip compatible. It is released under LGPL.

白昼 2024-07-17 04:56:44

KaZip 是一个开源 ZIP 存档器。 这是它的描述:

KAZIP 是快速、简单的 ZIP 存档器
dearchiver 使用最流行的 ZIP
format.Inflate - 压缩拉链
压缩格式(无加密
支持且无多磁盘
支持)。KAZip完全基于
Delphi VCL - 无 DLL、ActiveX 或其他
外部库
.KAZip 完全可用
面向流,这样你就可以处理
数据只存在于内存中,不创建
临时文件等。如果需要
添加 zip-unzip 功能到您的
申请,KAZIP就是对的
解决方案。 附加 ZipListView 和
ZipTreeView 组件,方便使用
可视化。功能:Zip-Unzip
使用 Inflate-DeflateBZip2 解压缩
通过使用 BZIP2 单位
Edison Mera Menndez. 函数:添加
文件、文件夹、流; 选择,
取消选择、检查;提取到
文件和流;删除和重命名
文件创建、删除和重命名
文件夹测试、修复许多新属性
和方法,提高了速度。非常
复杂的 Zip 浏览器演示应用程序
已包含

它与 Delphi 2009 尚不兼容,但通过对源代码进行一些细微的更改,您也可以使其在 Delphi 2009 中运行 事实上,我就是这么做的。

问候

KaZip is an open-source ZIP archiver. Here is its description:

KAZIP is fast, simple ZIP archiver and
dearchiver which uses most popular ZIP
format.Inflate - Deflate zip
compression format (no encryption
support and no multidisk
support).KAZip is totaly based on
Delphi VCL - no DLL, ActiveX or other
external libraries
.KAZip is totaly
stream oriented so you can deal with
data only in memory without creating
temporary files, etc. If you need to
add zip-unzip functionality to your
application,KAZIP is the right
solution. Additional ZipListView and
ZipTreeView components for easy
visualisation.Functionality:Zip-Unzip
using Inflate-DeflateBZip2 unzipping
trough usage of BZIP2 units from
Edison Mera Menndez.Functions:Adding
Files, Folders, Streams; Selecting,
Deselecting, Checking;Extracting to
files and streams;Delete and Rename
filesCreate, Delete and Rename
foldersTest, RepairMany new properties
and methods, improved speed.A very
complex Zip Browser demo application
is included

It is not compatible with Delphi 2009 yet, but with some minor changes in the source code, you can make it work in Delphi 2009 too. Actually, that's what I did.

Regards

清秋悲枫 2024-07-17 04:56:44

我使用 madZip 来自 madCollection

I`m using madZip from madCollection

月光色 2024-07-17 04:56:44

我很惊讶还没有人提到 JclCompression - 它是著名的 Jedi Code Library (JCL) 的一部分。
这是单元本身的视图: http://jcl.svn.sourceforge.net/viewvc/jcl/trunk/jcl/source/common/JclCompression.pas?view=markup

注意,它与 7-zip DLL 版本 4.64 - 更新版本兼容版本可能不向后兼容...

I'm surprised no-one has mentioned JclCompression yet - it's part of the well-known Jedi Code Library (JCL).
Here's a view of the unit itself : http://jcl.svn.sourceforge.net/viewvc/jcl/trunk/jcl/source/common/JclCompression.pas?view=markup

Note, it's compatible with 7-zip DLL version 4.64 - newer versions might not be backwards-compatible...

前事休说 2024-07-17 04:56:44

我推荐 ComponentAce 的 69 美元 ZipForge

I recommend the $69 ZipForge from ComponentAce.

我们只是彼此的过ke 2024-07-17 04:56:44

您可以使用 Pascal 的 7zip (LZMA) 绑定(与 Delphi 兼容): http://www.birtles .org.uk/programming/

You could use 7zip (LZMA) bindings for Pascal (compatible with Delphi): http://www.birtles.org.uk/programming/

っ〆星空下的拥抱 2024-07-17 04:56:44

另一个值得一看的 Delphi 资源是 InnoSetup。 源代码是可用的,只需做一点工作就可以让您在尝试做的事情上取得优势。 有一个选项可以创建与 WinZip 兼容的自解压 zip 存档,

我的想法不是使用该程序,而是使用他的源代码作为起点,因为它经过了严格的测试并且非常可靠。

Another Delphi resource to look at would be InnoSetup. The source code is available and with a little work might give you an edge up on what your trying to do. There is an option to create self extracting zip archives which are compatible with WinZip,

My thoughts are not to use the program, but to use his source as a starting point since it is very heavily tested and extremely solid.

帅的被狗咬 2024-07-17 04:56:44

infozips zip32 和 unzip32 dll。 它们可以在 Delphi(甚至 Visual Basic)中使用,两者都有接口单元/模块。 该界面不如我所希望的那么好,但它可以工作。

There are infozips zip32 and unzip32 dlls. They can be used from Delphi (even from Visual Basic), there are interface units/modules for both. The interface isn't as good as I would have liked it, but it works.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文