Inflater.setInput

Inflater.setInput

Class Overview | Class Members | This Package | All Packages

Syntax 1
public synchronized void setInput( byte b[], int off, int len )
Parameters
b
the input data bytes
off
the start offset of the input data
len
the length of the input data
Description
Sets input data for decompression. Should be called whenever needsInput() returns true indicating that more input data is required.

See Also
needsInput



Syntax 2
public void setInput( byte b[] )
Parameters
b
the input data bytes
Description
Sets input data for decompression. Should be called whenever needsInput() returns true indicating that more input data is required.

See Also
needsInput