Class Pack200UnpackerAdapter
java.lang.Object
org.apache.commons.compress.harmony.pack200.Pack200Adapter
org.apache.commons.compress.harmony.unpack200.Pack200UnpackerAdapter
- All Implemented Interfaces:
Pack200.Unpacker
This class provides the binding between the standard Pack200 interface and the internal interface for (un)packing.
-
Field Summary
Fields inherited from class org.apache.commons.compress.harmony.pack200.Pack200Adapter
DEFAULT_BUFFER_SIZE
Fields inherited from interface org.apache.commons.compress.java.util.jar.Pack200.Unpacker
DEFLATE_HINT, FALSE, KEEP, PROGRESS, TRUE
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
unpack
(File file, JarOutputStream out) Unpacks the contents of the specifiedFile
to the specified JAR output stream.void
unpack
(InputStream in, JarOutputStream out) Unpacks the specified stream to the specified JAR output stream.Methods inherited from class org.apache.commons.compress.harmony.pack200.Pack200Adapter
addPropertyChangeListener, completed, firePropertyChange, properties, removePropertyChangeListener
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.apache.commons.compress.java.util.jar.Pack200.Unpacker
addPropertyChangeListener, properties, removePropertyChangeListener
-
Constructor Details
-
Pack200UnpackerAdapter
public Pack200UnpackerAdapter()
-
-
Method Details
-
unpack
Description copied from interface:Pack200.Unpacker
Unpacks the contents of the specifiedFile
to the specified JAR output stream.- Specified by:
unpack
in interfacePack200.Unpacker
- Parameters:
file
- file to uncompress.out
- JAR output stream of uncompressed data.- Throws:
IOException
- if I/O exception occurs.
-
unpack
Description copied from interface:Pack200.Unpacker
Unpacks the specified stream to the specified JAR output stream.- Specified by:
unpack
in interfacePack200.Unpacker
- Parameters:
in
- stream to uncompress, preferably aBoundedInputStream
.out
- JAR output stream of uncompressed data.- Throws:
IOException
- if I/O exception occurs.
-