Inflater.setInput
Class Overview | Class Members |
This Package |
All Packages
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
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