(Java) Redirecting System.out and System.err to JTextPane or JTextArea
http://unserializableone.blogspot.kr/2009/01/redirecting-systemout-and-systemerr-to.html Friday, January 02, 2009 Redirecting System.out and System.err to JTextPane or JTextArea In Swing, if you want to redirect System.err and System.out to a JTextPane or a JTextArea, you only need to override the write() methods of OutputStream to append the text to the text pane instead. The example below show..