Deflater.setInput

Deflater.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 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



Syntax 2
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