Package java.io
Class InputStreamReader
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.