Java org.apache.commons.compress.compressors.pack200 Pack200CompressorInputStream fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.compress.compressors.pack200 Pack200CompressorInputStream fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.compress.compressors.pack200 Pack200CompressorInputStream.

The text is from its open source code.

Constructor

Pack200CompressorInputStream(final InputStream in, final Pack200Strategy mode, final Map props)
Decompresses the given stream using the given strategy to cache the results and the given properties.
Pack200CompressorInputStream(final File f, final Pack200Strategy mode, final Map props)
Decompresses the given file using the given strategy to cache the results and the given properties.
Pack200CompressorInputStream(final InputStream in)
Decompresses the given stream, caching the decompressed data in memory.
Pack200CompressorInputStream(final File f)
Decompresses the given file, caching the decompressed data in memory.

Method

booleanmatches(final byte[] signature, final int length)
Checks if the signature matches what is expected for a pack200 file (0xCAFED00D).