TAR.LZMA (TLZMA)到JAR转换器
在线免费转换您的tar.lzma文件为jar文件
tar.lzma
jar
如何转换TAR.LZMA到JAR
从计算机,Google Drive,Dropbox,URL或在页面上拖拽选择文件.
选择jar或任何其他你需要的格式作为结果(支持超过200种格式)
让文件进行转换随后你可以下载你的jar文件
关于格式
TAR.LZMA is a compound archive format combining TAR archiving with the LZMA (Lempel-Ziv-Markov chain Algorithm) compression method developed by Igor Pavlov for the 7-Zip project around 1998. The TAR layer concatenates files with Unix metadata into a single stream, and the LZMA algorithm compresses it using a sophisticated combination of LZ77 dictionary matching with large dictionaries (up to 4 GB), Markov chain-based probability modeling, and range coding. LZMA was the predecessor to the LZMA2 algorithm used in XZ and 7Z formats. Compression ratios significantly exceed gzip and are comparable to bzip2 while offering substantially faster decompression. One advantage is the high compression ratio with fast extraction — LZMA decompresses at speeds close to gzip while achieving compression densities near bzip2 or better, making it efficient for distribution archives that are compressed once and extracted many times. The format is supported by tar's --lzma flag and by 7-Zip across all platforms. While TAR.LZMA has been largely succeeded by TAR.XZ (which uses LZMA2 in a more robust container with integrity checks), existing TAR.LZMA archives remain encountered in software distributions and backup systems that adopted the format before XZ became widely available.
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 库和应用在企业、移动和嵌入式部署中的基本分发单元。