| java.lang.Object java.io.OutputStream java.io.FilterOutputStream org.jfree.report.util.NoCloseOutputStream
NoCloseOutputStream | public class NoCloseOutputStream extends FilterOutputStream (Code) | | A Wrapper stream that does never calls close on its parent. This implementation is
needed when creating ZipOutputStream, as the final ZipDirectory is written when close
is called on the ZipOutputSteam.
author: Thomas Morgner |
Method Summary | |
public void | close() Closes this output stream and releases any system resources associated with the
stream, but does not close the underlying output stream. |
NoCloseOutputStream | public NoCloseOutputStream(OutputStream out)(Code) | | Create a new NoCloseOutputStream with the given output stream a parent.
Parameters: out - the parent stream |
|
|