如何使用 C# 将 CAB 转换为 TAR.BZ2
首先,您需要在 C# 项目中获取并引用 Aspose.Zip 库。您通常可以从 Aspose 网站下载它或使用 NuGet 包(如果有)。 包管理器,搜索 Aspose.ZIP 并安装。您还可以从包管理器控制台使用以下命令。
使用 Visual Studio 包管理 NuGet 包
包管理器控制台命令:
PM> Install-Package Aspose.Zip
通过 C# 将 CAB 转换为 TAR.BZ2 的步骤
Convertation from CAB to TAR.BZ2 consist of following steps:
- Extract archive to intermediate storage
- Compress extracted data to desired format
系统要求
Before running the conversion example code, make sure that you have the following prerequisites.
- Microsoft Windows or a compatible OS with .NET Framework, Mono and COM Interop.
- Development environment like Microsoft Visual Studio.
- Aspose.Tasks for .NET DLL referenced in your project.
从 CAB 转换为 TAR.BZ2 的示例代码
将 CAB 存档转换为各种格式的过程需要采用系统方法。 CAB 档案通常包含多个文件或记录,每个文件或记录都包含有价值的数据。为了促进向 GZ (Gzip)、LZ (Lzip)、Z (Unix Compress)、XZ (XZ Utils) 和 BZ2 (Bzip2) 等格式的转换,广泛采用的策略是将这些内容初始捆绑到 TAR 中。 BZ2(采用 Bzip2 压缩的磁带存档)格式。
这种方法与 Linux 环境中的既定实践相似,其中 TAR.BZ2 存档通常用作多功能容器。在转换过程中,CAB 存档中的每个单独文件或记录都被精心组织在单个 TAR.BZ2 存档中。该 TAR.BZ2 存档充当一个内聚的存储库,精心保留原始文件结构和相关元数据。这种封装为 TAR.BZ2 格式简化了各种压缩算法和格式的后续应用。
选择 TAR.BZ2 作为临时格式是基于其固有的简单性和跨各种类 Unix 操作系统的卓越兼容性。它无需直接应用压缩即可将文件分组在一起的能力使其成为一个务实的选择。成功打包成 TAR.BZ2 后,可以执行后续压缩操作以产生所需的输出格式,包括 GZ、LZ、Z、XZ 或 BZ2。
本质上,这个全面的流程确保了最初驻留在 CAB 存档中的数据可以有效地转换为一系列格式,从而为各种用例提供灵活性和兼容性。
从 CAB 转换为 TAR.BZ2 - C#:
using (TarArchive tarArchive = new TarArchive())
{
using (Bzip2Archive bzip2Archive = new Bzip2Archive())
{
using (CabArchive cabArchive = new CabArchive("archive.cab"))
{
for (int i = 0; i < cabArchive.Entries.Count; i++)
{
var ms = new MemoryStream();
cabArchive.Entries[i].Extract(ms);
ms.Seek(0, SeekOrigin.Begin);
tarArchive.CreateEntry(cabArchive.Entries[i].Name.Replace('\\', '/'), ms);
}
}
bzip2Archive.SetSource(tarArchive);
bzip2Archive.Save("output.tar.bz2");
}
}
将 CAB 转换为 TAR.BZ2 的免费应用程序
查看我们的CAB 到 TAR.BZ2 转换的现场演示,具有以下优势
一个可靠的Aspose.ZIP库,可以压缩、提取、加密、解密、转换和合并档案。 Aspose.ZIP for .NET API 允许操作各种存档类型,而无需以最少的编码工作进入压缩文件格式的底层复杂性。