Package java.io
Class CharArrayReader

Public Method close

void close()

Overrides:

Throws:

_INSERT_METHOD_SIGNATURE_HERE_

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.