Package java.io
Class CharArrayReader
Description:
This method close the stream.
Example
char[] ch = {'H','e','l','l','o'};
CharArrayReader car = new CharArrayReader(ch);
car.close();
After the construction of a CharArrayReader, the stream is closed.