Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a way to set the stream System.err so everything written to it is ignored? (i.e. discarded not outputted)

share|improve this question

4 Answers

up vote 21 down vote accepted
System.setErr(new PrintStream(new OutputStream() {
    public void write(int b) {
    }
}));
share|improve this answer
2  
I have found another way: System.err.close(); – elou Aug 2 '12 at 14:47

You can use System.setErr() to give it a PrintStream which doesn't do anything.

See @dogbane's example for the code.

share|improve this answer

Just set Error to dommy implementation:

System.setErr(new PrintStream(new OutputStream() {
            @Override
            public void write(int arg0) throws IOException {
                // keep empty
            }
        }));

You need to have special permission to do that.

RuntimePermission("setIO")
share|improve this answer

You could redirect the err Stream to /dev/null

OutputStream output = new FileOutputStream("/dev/null");
PrintStream nullOut = new PrintStream(output);
System.setErr(nullOut);
share|improve this answer
1  
this is *nix specific, though. – asgs May 9 '11 at 12:05
1  
Note: On Windows, use "NUL:" instead of "/dev/null". – dogbane May 9 '11 at 12:06
/dev/null doesn't exist in windows (you can use NUL on those though) – ratchet freak May 9 '11 at 12:09
1  
@rachet freak, If you have a directory called dev it soon will. ;) (dev is short for development on my PC) – Peter Lawrey May 9 '11 at 12:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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