Package java.io
Class PushbackInputStream

Public Method close

void close()

Overrides:

Throws:

_INSERT_METHOD_SIGNATURE_HERE_

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.