| java.lang.Object org.apache.harmony.pack200.Archive
Archive | public class Archive (Code) | | The Archive class is the main entry point to unpack200. An archive is
constructed with either two file names, a pack file and an output file name
or two input streams corresponding to the input and the output streams. Then
unpack() is called, to unpack the pack200 archive.
|
Constructor Summary | |
public | Archive(String inputFile, String outputFile) Creates an Archive with the given input and output file names. | public | Archive(InputStream inputStream, JarOutputStream outputStream) Creates an Archive with streams for the input and output files. |
setDeflateHint | public void setDeflateHint(boolean deflateHint)(Code) | | |
setQuiet | public void setQuiet(boolean quiet)(Code) | | |
setRemovePackFile | public void setRemovePackFile(boolean removePackFile)(Code) | | If removePackFile is set to true, the input file is deleted after
unpacking
Parameters: removePackFile - |
setVerbose | public void setVerbose(boolean verbose)(Code) | | |
|
|