Package java.io
Class CharArrayReader
Description:
This method skips the specified number of characters.
Example
char[] ch = {'H','e','l','l','o'};
CharArrayReader car = new CharArrayReader(ch);
Logger.log("The first element of the stream: " + car.read());
car.skip(2);
Logger.log("The next element the fourth: " + car.read());
The skip method skips the specified characters.