public abstract class Pack200 extends Object
通常,应用程序开发人员使用打包机引擎在网站上部署或托管JAR文件。 解包器引擎被部署应用程序用于将字节流转换回JAR格式。
以下是使用packer和unpacker的示例:
import java.util.jar.Pack200; import java.util.jar.Pack200.*; ... // Create the Packer object Packer packer = Pack200.newPacker(); // Initialize the state by setting the desired properties Map p = packer.properties(); // take more time choosing codings for better compression p.put(Packer.EFFORT, "7"); // default is "5" // use largest-possible archive segments (>10% better compression). p.put(Packer.SEGMENT_LIMIT, "-1"); // reorder files for better compression. p.put(Packer.KEEP_FILE_ORDER, Packer.FALSE); // smear modification times to a single value. p.put(Packer.MODIFICATION_TIME, Packer.LATEST); // ignore all JAR deflation requests, // transmitting a single request to use "store" mode. p.put(Packer.DEFLATE_HINT, Packer.FALSE); // discard debug attributes p.put(Packer.CODE_ATTRIBUTE_PFX+"LineNumberTable", Packer.STRIP); // throw an error if an attribute is unrecognized p.put(Packer.UNKNOWN_ATTRIBUTE, Packer.ERROR); // pass one class file uncompressed: p.put(Packer.PASS_FILE_PFX+0, "mutants/Rogue.class"); try { JarFile jarFile = new JarFile("/tmp/testref.jar"); FileOutputStream fos = new FileOutputStream("/tmp/test.pack"); // Call the packer packer.pack(jarFile, fos); jarFile.close(); fos.close(); File f = new File("/tmp/test.pack"); FileOutputStream fostream = new FileOutputStream("/tmp/test.jar"); JarOutputStream jostream = new JarOutputStream(fostream); Unpacker unpacker = Pack200.newUnpacker(); // Call the unpacker unpacker.unpack(f, jostream); // Must explicitly close the output. jostream.close(); } catch (IOException ioe) { ioe.printStackTrace(); }
使用gzip压缩的Pack200文件可以托管在HTTP / 1.1 Web服务器上。 部署应用程序可以使用“Accept-Encoding = pack200-gzip”。 这向服务器指示客户端应用程序需要使用Pack200编码的文件的版本,并使用gzip进一步压缩。 请参考Java Deployment Guide更多的细节和技巧。
除非另有说明,否则将null参数传递给此类中的构造函数或方法将导致抛出NullPointerException
。
Modifier and Type | Class and Description |
---|---|
static interface |
Pack200.Packer
打包机引擎对输入的JAR文件进行各种转换,使包流由压缩器(如gzip或zip)高度压缩。
|
static interface |
Pack200.Unpacker
解包器引擎将打包流转换为JAR文件。
|
Modifier and Type | Method and Description |
---|---|
static Pack200.Packer |
newPacker()
获取实现Packer的类的新实例。
|
static Pack200.Unpacker |
newUnpacker()
获取实现Unpacker的类的新实例。
|
public static Pack200.Packer newPacker()
如果定义了系统属性java.util.jar.Pack200.Packer ,则该值将被视为具体实现类的完全限定名称,必须实现Packer。 这个类被加载和实例化。 如果此过程失败,则抛出未指定的错误。
如果没有使用系统属性指定实现,则将系统默认实现类实例化,并返回结果。
注意:如果多个线程同时使用返回的对象不能保证正常运行。 多线程应用程序应该分配多个封隔器引擎,或者使用一个带有锁定的引擎进行序列化。
public static Pack200.Unpacker newUnpacker()
如果定义了系统属性java.util.jar.Pack200.Unpacker ,则该值将被视为具体实现类的完全限定名称,必须实现Unpacker。 该类被加载并实例化。 如果此过程失败,则抛出未指定的错误。
如果没有使用系统属性指定实现,则将系统默认实现类实例化,并返回结果。
注意:如果多个线程同时使用返回的对象不能保证正常运行。 多线程应用程序应该分配多个解包器引擎,或者使用一个引擎来锁定。
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.