API Overview API Index Package Overview Direct link to this page
JDK 1.6
  java.util.jar. Pack200.Unpacker View Source
Author(s)
Since
1.5
Version
Serial
Hierarchy
 Pack200.Unpacker
Subinterfaces
Description
publicstatic interface Pack200.Unpacker
  The unpacker engine converts the packed stream to a JAR file.
See also:   
Methods
Hide/Show inherited methods
public void addPropertyChangeListener (PropertyChangeListener listener)
  Registers a listener for PropertyChange events on the properties map.
public SortedMap<String, String> properties ()
  Get the set of this engine's properties.
public void removePropertyChangeListener (PropertyChangeListener listener)
  Remove a listener for PropertyChange events, added by the Pack200.Unpacker.addPropertyChangeListener(java.beans.PropertyChangeListener).
public void unpack (File in, JarOutputStream out) throws IOException
  Read a Pack200 archive, and write the encoded JAR to a JarOutputStream.
public void unpack (InputStream in, JarOutputStream out) throws IOException
  Read a Pack200 archive, and write the encoded JAR to a JarOutputStream.
Fields
Hide/Show inherited fields
publicfinalstatic String DEFLATE_HINT = "unpack.deflate.hint"
  Property indicating that the unpacker should ignore all transmitted values for DEFLATE_HINT, replacing them by the given value, Pack200.Unpacker.TRUE or Pack200.Unpacker.FALSE.
publicfinalstatic String FALSE = "false"
  The string "false", a possible value for certain properties.
publicfinalstatic String KEEP = "keep"
  The string "keep", a possible value for certain properties.
publicfinalstatic String PROGRESS = "unpack.progress"
  The unpacker's progress as a percentage, as periodically updated by the unpacker.
publicfinalstatic String TRUE = "true"
  The string "true", a possible value for certain properties.
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar