FilterOutputStream.close
Class Overview | Class Members |
This Package |
All Packages
public void close() throws IOException
Description
Closes this output stream and releases any system resources
associated with the stream.
The close method of FilterOutputStream
calls its flush method, and then calls the
close method of its underlying output stream.
Exceptions
IOException
if an I/O error occurs.
Overrides
close in class OutputStream
See Also
flush, out