Deflater.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 data
- len
- the length of the data
Description
Sets input data for compression. This 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 compression. This should be called whenever
needsInput() returns true indicating that more input data is required.
See Also
needsInput