TAR.Z (TZ)到ZIP转换器
在线免费转换您的tar.z文件为zip文件
tar.z
zip
如何转换TAR.Z到ZIP
从计算机,Google Drive,Dropbox,URL或在页面上拖拽选择文件.
选择zip或任何其他你需要的格式作为结果(支持超过200种格式)
让文件进行转换随后你可以下载你的zip文件
关于格式
TAR.Z is a compound archive format combining TAR archiving with Unix compress, one of the earliest general-purpose data compression tools available on Unix systems. The compress utility, originally written by Spencer Thomas, Joe Orost, and others around 1985, implements adaptive LZW (Lempel-Ziv-Welch) compression — a dictionary-based algorithm that builds a translation table during compression and decompression. The TAR layer bundles files with full Unix metadata into a single stream, and compress reduces the stream size typically by 40-60%. TAR.Z was the standard compressed archive format on Unix systems throughout the 1980s and early 1990s, before gzip emerged as a patent-free replacement. The LZW algorithm used by compress was subject to patent claims by Unisys (holders of the LZW patent through Sperry), which motivated the development of gzip as an unencumbered alternative. One advantage is universal legacy compatibility — TAR.Z files can be extracted on any Unix system, including very old installations where newer compression tools may not be available. The format's historical ubiquity means that decades of archived software, documentation, and system backups exist as TAR.Z files. While TAR.GZ and TAR.XZ have replaced TAR.Z for new archives, the uncompress/zcat tools remain standard on all Unix-like systems, ensuring continued accessibility of legacy archives.
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 及众多其他容器格式的结构基础,这些格式都将多种资源打包到单个文件中。