What is practical usage of FilterOutputStream
in Java?
From javadocs:
This class is the superclass of all classes that filter output streams. These streams sit on top of an already existing output stream (the underlying output stream) which it uses as its basic sink of data, but possibly transforming the data along the way or providing additional functionality.
For me it seems to have same methods as OutputStream
(maybe it overrides them for some reason?). What kind of data "transformation" does it offer and when can one use it in own Java application?
Joshua Bloch in Effective Java Item 16: Favor composition over inheritance explains why inheritance is not always the best tool for the job. It is often more efficient to use Decorator pattern. FilterOutputStream and FilterInputStream are the base for implementing this pattern. For example I want to block OutputStream.close. This is what I could do
class NonCloseableOutputStream extends FilterOutputStream {
public NonCloseableOutputStream(OutputStream out) {
super(out);
}
@Override
public void close() throws IOException {
// ignore
}
}
Now my class can accept any subclass of OutputStream and make it non-closeable.
The class FilterOutputStream itself simply overrides all methods of OutputStream with versions that pass all requests to the underlying output stream.
So as you suspected, it doesn't do much besides overrides the methods with a somewhat more useful implementation.
These classes are from Java 1.0, so they may not be designed in the best possible way. However, extending a FilterStream
will still work just fine, in case you need to create your own (although there are ready-made filter streams (like CheckedInputStream
, DigestInputStream
or CipherInputStream
) for plenty of things).
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With