Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
java.util.zip.DataFormatException

Uses of DataFormatException in java.util.zip
 

Methods in java.util.zip that throw DataFormatException
private  void InflaterHuffmanTree.buildTree(byte[] codeLengths)
           
(package private)  int InflaterHuffmanTree.getSymbol(StreamManipulator input)
          Reads the next symbol from input.
 boolean InflaterDynHeader.decode(StreamManipulator input)
           
 InflaterHuffmanTree InflaterDynHeader.buildLitLenTree()
           
 InflaterHuffmanTree InflaterDynHeader.buildDistTree()
           
 int Inflater.inflate(byte[] buf)
          Inflates the compressed stream to the output buffer.
 int Inflater.inflate(byte[] buf, int off, int len)
          Inflates the compressed stream to the output buffer.
private  boolean Inflater.decodeHeader()
          Decodes the deflate header.
private  boolean Inflater.decodeHuffman()
          Decodes the huffman encoded symbols in the input stream.
private  boolean Inflater.decodeChksum()
          Decodes the adler checksum after the deflate stream.
private  boolean Inflater.decode()
          Decodes the deflated stream.
 

Constructors in java.util.zip that throw DataFormatException
InflaterHuffmanTree(byte[] codeLengths)
          Constructs a Huffman tree from the array of code lengths.