The
skip(long) method of
StringReader Class in Java is used to skip the specified number of characters on the stream. This number of characters is specified as the parameter. If it reaches the end of the stream by skipping, it will block the stream till it gets some characters, or throw IOException.
Syntax:
public long skip(long numberOfChar)
Parameters: This method accepts a parameter
numberOfChar which is the number of characters to be skipped by this method.
Return Value: This method returns a
long value which is the actual number of character skipped by this method.
Exception: This method throws:
- IOException: if some error occurs while input output
- IllegalArgumentException: if the numberOfChar passed is negative.
Below methods illustrates the working of skip(long) method:
Program 1:
Output:
Geeks
Next 3 characters skipped.
Geeks
Program 2: