Skip over the number of specified bytes from the given file input stream or string buffer input stream object.
Syntax
skip( inputstream , offset )
inputstream.skip( offset )
Parameters
inputstream
|
the file input stream, string buffer input stream or input streamobject to use.
|
offset
|
the number of bytes to skip.
|
Returns
long
|
the number of bytes skipped.
|
Example
tOffset = fh.skip( offset )
|