TAR.LZ (TLZ)到ZIP转换器
在线免费转换您的tar.lz文件为zip文件
tar.lz
zip
如何转换TAR.LZ到ZIP
从计算机,Google Drive,Dropbox,URL或在页面上拖拽选择文件.
选择zip或任何其他你需要的格式作为结果(支持超过200种格式)
让文件进行转换随后你可以下载你的zip文件
关于格式
TAR.LZ is a compound archive format combining TAR) archiving with lzip compression, a format created by Antonio Diaz Diaz and first released in 2009. The TAR layer bundles files with full Unix metadata into a single stream, and lzip applies LZMA compression with a robust container that includes per-member CRC-32 integrity checking and clean member boundaries. Lzip was designed with long-term archival in mind — it produces a simple, well-documented format with strong error recovery properties: if part of a TAR.LZ file is corrupted, undamaged members can still be extracted, unlike monolithic compressed streams where corruption propagates. The compression ratios are essentially identical to LZMA/XZ since lzip uses the same LZMA algorithm. One advantage is archival resilience — the member-based structure means a multi-part archive can survive partial corruption without losing all data, critical for long-term storage. The clean, minimal format design is another strength: lzip has a simple specification that independent implementations can follow precisely, reducing the risk of compatibility issues over decades of archival. TAR.LZ is used by the GNU Project for distributing source releases and is supported by GNU tar with the --lzip flag, as well as by plzip for parallel compression on multi-core systems.
ZIP 是计算领域中使用最广泛的归档格式,最初由 Phil Katz 创建,于 1989 年 2 月 14 日作为 MS-DOS 上 PKZIP 工具的一部分由 PKWARE) 发布。该格式将归档内的每个文件独立存储,使用 Deflate 算法(最常见)对条目单独压缩,并在文件末尾记录一个中央目录,提供目录索引以便无需扫描整个归档即可快速访问任一条目。ZIP 支持多种压缩方法(Stored、Deflate、Deflate64、BZIP2、LZMA)、AES 加密、用于超过 4 GB 文件和归档的 ZIP64 扩展,以及 Unicode 文件名编码。PKWARE 以 .ZIP Application Note 形式发布的开放规范使广泛的独立实现成为可能,推动 ZIP 成为文件分发的事实标准。ZIP 的一大优势是操作系统原生支持 — Windows、macOS 和大多数 Linux 桌面环境无需任何第三方软件即可处理 ZIP 文件,使其成为向未知接收者发送压缩文件时最安全的选择。逐文件压缩架构是另一项关键优势:可以提取或更新单个文件而无需重新处理整个归档,且单个条目损坏不会影响其他文件。ZIP 的作用远不止简单归档 — 它是 JAR)、EPUB、DOCX、PPTX、ODP、APK 及众多其他容器格式的结构基础,这些格式都将多种资源打包到单个文件中。