Is there anyway to check whether an OutputStream is closed without attempting to write to it and catching the IOException
?
For example, consider the following contrived method:
public boolean isStreamClosed(OutputStream out){
if( /* stream isn't closed */){
return true;
}else{
return false;
}
}
What could you replace /* stream isn't closed */
with?
Unfortunately OutputStream API does not have method like
isClosed()
.So, I know only one clear way: create your class
StatusKnowingOutputStream
that wraps any other output stream and implements itsclose()
method as following:Now add method
isClosed()
by using out.checkError()
found it here: How do I get java to exit when piped to head
This is possible only for a FileOutputStream!
No. If you implement your own, you could write an isClosed method, but if you don't know the concrete class, then no. OutputStream is just an abstract class. Here's it's implementation:
The OutputStream itself does not support such a method. The Closable interface is defined in a way that once you call close() you are going to dispose of that OutputStream.
Maybe you should revisit a bit the design of the application and check why you're not doing that and you're ending up with a closed OutputStream instance still running around in your application.
The underlying stream may not know it its closed until you attempt to write to it (e.g. if the other end of a socket closes it)
The simplest approach is to use it and handle what happens if it closed then, rather than testing it first as well.
No matter what you test, there is always the chance you will get an IOException, so you cannot avoid the exception handling code. Adding this test is likely to complicate the code.