TAR.LZO (TLZO)到JAR转换器

在线免费转换您的tar.lzo文件为jar文件

放置文件在这里. 1 GB 最大文件大小 或者 注册
Facebook Amazon Microsoft Tesla Nestle Walmart L'Oreal

如何转换TAR.LZO到JAR

1

从计算机,Google Drive,Dropbox,URL或在页面上拖拽选择文件.

2

选择jar或任何其他你需要的格式作为结果(支持超过200种格式)

3

让文件进行转换随后你可以下载你的jar文件

关于格式

TAR.LZO is a compound archive format pairing TAR) archiving with LZO (Lempel-Ziv-Oberhumer) compression, created by Markus Oberhumer in 1996. The TAR layer bundles files with Unix metadata, and the LZO algorithm compresses the stream prioritizing decompression speed above all else. LZO is an asymmetric compressor — it sacrifices compression ratio for extremely fast decompression, operating at speeds that approach raw memory bandwidth on modern hardware. This makes TAR.LZO ideal for scenarios where archives must be extracted quickly and frequently, such as real-time backup systems and embedded device firmware images. One advantage is decompression performance — LZO extraction is several times faster than gzip and an order of magnitude faster than bzip2, critical for time-sensitive operations like boot-time filesystem initialization or rapid backup restoration. The low CPU overhead during extraction is another strength, making TAR.LZO practical on resource-constrained embedded systems and for streaming decompression without buffering. The lzop command-line tool integrates with tar via pipeline, and the format is used in the Linux kernel's initramfs, Btrfs filesystem compression, and various real-time data processing systems where extraction latency matters more than archive size.
开发者: Markus Oberhumer
首次发布: 1996
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 库和应用在企业、移动和嵌入式部署中的基本分发单元。
开发者: Sun Microsystems
首次发布: 1996年1月23日