Results 1 to 3 of 3
- 12-26-2010, 10:27 AM #1
Member
- Join Date
- Dec 2010
- Posts
- 2
- Rep Power
- 0
Redirecting System.err on two output
Hi All!
I need to redirect System.err on two output, in order to keep track of exception both on a file and on console
at this moment, I only redirect errors output on a file:
where out is a PrintStreamJava Code:System.setErr(out);
when an exception occours, I'd like to print a video message also
the best result would be to print the entire stack trace, but even writing "ERROR" would be fine
could anyone help me?
- 12-26-2010, 10:53 AM #2
- Join Date
- Sep 2008
- Location
- Voorschoten, the Netherlands
- Posts
- 11,603
- Blog Entries
- 7
- Rep Power
- 17
I think the simplest solution is to implement a 'tee' OutputStream like this:
Pass two OutputStreams to its constructor and all output writen to the TeeOutputStream will be written to the two encapsulated OutputStreams.Java Code:public class TeeOutputStream extends OutputStream { private OutputStream out1; private OutputStream out2; public TeeOutputStream(OutputStream out1, OutputStream out2) { this.out1= out1; this.out2= out2; } public void write(int b) throws IOException { out1.write(b); out2.write(b); } }
kind regards,
JosWhen people rob a bank they get a penalty; when banks rob people they get a bonus.
- 12-26-2010, 11:19 AM #3
Member
- Join Date
- Dec 2010
- Posts
- 2
- Rep Power
- 0
Similar Threads
-
Redirecting output of java program to file
By dewitrydan in forum New To JavaReplies: 4Last Post: 11-17-2010, 06:58 AM -
Problem while redirecting script output to a file using java
By umapathy_sekar in forum Advanced JavaReplies: 4Last Post: 11-09-2010, 09:33 AM -
Save the output from system.out.println into a file
By Iskatel in forum Advanced JavaReplies: 5Last Post: 10-05-2010, 02:52 PM -
Need help in redirecting to a url
By umapathy_sekar in forum Advanced JavaReplies: 1Last Post: 09-27-2010, 12:52 PM -
Redirecting output at Thread level
By beezerbutt in forum Advanced JavaReplies: 8Last Post: 02-14-2009, 11:19 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks