Package | Description |
---|---|
org.apache.commons.compress.archivers.zip |
Provides stream classes for reading and writing archives using
the ZIP format.
|
org.apache.commons.compress.compressors.bzip2 |
Provides stream classes for compressing and decompressing
streams using the BZip2 algorithm.
|
org.apache.commons.compress.compressors.deflate64 |
Provides a stream that allows decompressing streams using the
DEFLATE64(tm) algorithm.
|
org.apache.commons.compress.compressors.lzw |
Generic LZW implementation.
|
Modifier and Type | Class and Description |
---|---|
(package private) class |
BitStream
Iterates over the bits of an InputStream.
|
Modifier and Type | Field and Description |
---|---|
private BitInputStream |
BZip2CompressorInputStream.bin |
Modifier and Type | Method and Description |
---|---|
private static boolean |
BZip2CompressorInputStream.bsGetBit(BitInputStream bin) |
private static int |
BZip2CompressorInputStream.bsGetInt(BitInputStream bin) |
private static char |
BZip2CompressorInputStream.bsGetUByte(BitInputStream bin) |
private static int |
BZip2CompressorInputStream.bsR(BitInputStream bin,
int n)
read bits from the input stream
|
private int |
BZip2CompressorInputStream.readNextByte(BitInputStream in) |
Modifier and Type | Field and Description |
---|---|
private BitInputStream |
HuffmanDecoder.reader |
Modifier and Type | Method and Description |
---|---|
private static int |
HuffmanDecoder.nextSymbol(BitInputStream reader,
HuffmanDecoder.BinaryTreeNode tree) |
private static void |
HuffmanDecoder.populateDynamicTables(BitInputStream reader,
int[] literals,
int[] distances) |
private static long |
HuffmanDecoder.readBits(BitInputStream reader,
int numBits) |
Modifier and Type | Field and Description |
---|---|
protected BitInputStream |
LZWInputStream.in |