TAR.XZ (TXZ)到JAR转换器
在线免费转换您的tar.xz文件为jar文件
tar.xz
jar
如何转换TAR.XZ到JAR
从计算机,Google Drive,Dropbox,URL或在页面上拖拽选择文件.
选择jar或任何其他你需要的格式作为结果(支持超过200种格式)
让文件进行转换随后你可以下载你的jar文件
关于格式
TAR.XZ is a compound archive format combining TAR) archiving with XZ compression, developed by the Tukaani Project and led by Lasse Collin since 2009. The TAR layer bundles files preserving Unix metadata, and XZ applies LZMA2 compression within a robust container featuring CRC-32 and CRC-64 integrity checks, padding support for media storage, and a stream/block structure enabling parallel decompression. LZMA2 improves on LZMA with better handling of incompressible data and multi-threaded compression support. TAR.XZ has become the preferred distribution format for many open-source projects — the Linux kernel, GNU core utilities, and numerous other packages ship their source tarballs as .tar.xz files. One advantage is the best compression-to-decompression-speed ratio among widely supported formats — XZ achieves compression ratios comparable to 7Z while decompressing faster than bzip2, an ideal combination for software distribution. The built-in integrity verification is another strength: unlike raw LZMA streams, the XZ container includes checksums that detect corruption before data reaches the application layer. GNU tar supports TAR.XZ natively via the -J flag, and xz-utils are packaged in every major Linux distribution. The format has effectively replaced TAR.GZ and TAR.BZ2 as the default for source code distribution in the open-source ecosystem.
JAR(Java Archive)是基于 ZIP 的包文件格式,由 Sun Microsystems) 开发,于 1996 年 1 月随 JDK 1.1 推出,用于将 Java 类文件、相关元数据和资源打包为单个可部署单元。JAR 文件在结构上是一个 ZIP 归档,额外包含一个 META-INF/MANIFEST.MF 文件 — 一个文本清单,声明归档的主类入口点、类路径依赖、包版本信息和数字签名信息。Java 运行时直接从 JAR 文件加载类而无需解压,利用 ZIP 目录实现对单个条目的高效随机访问。JAR 归档可以设为可执行:在清单中指定 Main-Class 属性后,只需简单的 java -jar 命令即可启动应用程序。该格式通过 JDK 的 jarsigner 工具支持代码签名,嵌入的数字签名可验证归档内容的真实性和完整性。JAR 的一大优势是与 Java 生态系统的原生集成 — JVM、构建工具(Maven、Gradle)、应用服务器和 IDE 都将 JAR 文件视为一等工件,形成统一的构建-部署-运行流程。该格式与标准 ZIP) 工具的向下兼容性是另一项实用优势:任何 ZIP 工具都能查看 JAR 内容,同时清单和签名层在此基础上添加了 Java 特有的功能。JAR 至今仍是 Java 库和应用在企业、移动和嵌入式部署中的基本分发单元。