vote up 6 vote down star

I need to specify an OutputStream for an API I'm using, but I don't actually have a need for the output. Does Java have an OutputStream equivalent to > /dev/null ?

flag

6 Answers

vote up 8 vote down check

Java doesn't it would seem but Apache Commons IO does. Take a look at the following:

http://commons.apache.org/io/api-1.4/org/apache/commons/io/output/NullOutputStream.html

Hope that helps.

link|flag
vote up 0 vote down

Not in the standard library AFAIK, but it shouldn't be difficult to create one by overriding write in OutputStream

link|flag
vote up 1 vote down

There is an open implementation here. You can check the javadoc here

link|flag
vote up 1 vote down

No, but it is pretty easy to implement.

See this question "How to remove System.out.println from codebase"

And then you just have to:

System.out = DevNull.out;

Or something like that :)

link|flag
vote up 6 vote down

Rehashing the answers already provided -

Java does not have a NullOutputStream class. You could however roll your own OutputStream that ignores any data written to it - in other words write(int b), write(byte[] b) and write(byte[] b, int off, int len) will have empty method bodies. This is what the Common IO NullOutputStream class does.

link|flag
vote up 2 vote down
/**Writes to nowhere*/
public class NullOutputStream extends OutputStream {
  @Override
  public void write(int b) throws IOException {
  }
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.