Returns a string containing the specified number of bytes read from the given random access file, data input stream or data input object.
Syntax
readFully( inputstream , bytearray )
inputstream.readFully( bytearray )
Parameters
inputstream
|
the random access file, data input stream or data input object to use.
|
bytearray
|
a byte array object to read into.
|
Returns
returncode
|
0 if read occurred without error.
-1 if end of file was reached.
|
Example
fh.readFully( buf )
Syntax
readFully( inputstream , bytearray , offset , length )
inputstream.readFully( bytearray , offset , length )
Parameters
inputstream
|
the random access file, data input stream or data input object to use.
|
bytearray
|
a byte array object to read into.
|
offset
|
a starting offset.
|
length
|
the number of bytes to read.
|
Returns
returncode
|
0 if read occurred without error.
-1 if end of file was reached.
|
Example
fh.readFully( buf, 0, 1024 )
|