Package java.io
Class InputStreamReader

Public Method close

void close()

Overrides:

Throws:

_INSERT_METHOD_SIGNATURE_HERE_

Description:

This method closes this input stream reader.

Example

   File file = new File("testFile");
   InputStream in = new FileInputStream(file);
   InputStreamReader inr = new InputStreamReader(in);

   inr.close();

The example above close this stream.