Package java.io
Class PushbackInputStream
Description:
This method closes this stream and releases any system resources associated with the stream.
Example
File file = new File("testFile");
InputStream in = new FileInputStream(file);
PushbackInputStream pis = new PushbackInputStream(in, 20);
pis.close();
The close method closes the stream.