Skip to content

Instantly share code, notes, and snippets.

@rubenhorn
Last active March 21, 2020 15:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rubenhorn/491fce66a90ec8fc1bfef975dda3fed7 to your computer and use it in GitHub Desktop.
Save rubenhorn/491fce66a90ec8fc1bfef975dda3fed7 to your computer and use it in GitHub Desktop.
Redirect the output of System.out.println() to a Swing gui
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.io.PrintStream;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
public class RedirectAppOutputStream {
// This synchronized class will be used to write to the console window
private class SynchronizedByteArrayOutputStreamWrapper
extends OutputStream {
// The console will be synchronized through a monitor.
// WARNING! This could delay the code trying to write to the console!
private final Object monitor = new Object();
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
@Override
public void write(int data) throws IOException {
synchronized (monitor) {
byteArrayOutputStream.write(data);
}
}
public byte[] readEmpty() {
byte[] bufferContent;
synchronized(monitor) {
bufferContent = byteArrayOutputStream.toByteArray();
byteArrayOutputStream.reset();
}
return bufferContent;
}
}
public void guiConsoleTest() {
System.out.println("Normal java console output");
// Remember old output stream (optional)
PrintStream stdout = System.out;
stdout.println("Starting gui for console output"); // Still works
// Stream for output to gui
SynchronizedByteArrayOutputStreamWrapper rawout = new SynchronizedByteArrayOutputStreamWrapper();
// Set new stream for System.out
System.setOut(new PrintStream(rawout, true));
// Demo gui
JTextArea textArea = new JTextArea();
JFrame window = new JFrame("Console test");
window.add(new JScrollPane(textArea));
window.setSize(500, 500);
window.setVisible(true);
// Console thread
Thread consoleThread = new Thread(() -> {
while (!Thread.currentThread().isInterrupted()) {
String pendingConsoleOutput = new String(rawout.readEmpty());
textArea.append(pendingConsoleOutput);
}
try {
Thread.sleep(100);
} catch (InterruptedException e) {
}
});
consoleThread.start();
// Test it (for 10 sec)
for (int i = 1; i <= 100; i++) {
System.out.println("Printing to gui console: " + i);
try {
Thread.sleep(100);
} catch (InterruptedException e) {
}
}
// Wait 1 sec
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
}
// Clean up and exit
consoleThread.interrupt();
try {
consoleThread.join();
} catch (InterruptedException e) {
}
window.dispose();
}
public static void main(String[] args) {
new RedirectAppOutputStream().guiConsoleTest();
}
}
import java.io.IOException;
import java.io.OutputStream;
import java.io.PrintStream;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
public class RedirectAppOutputStream2 {
private class GuiOutputStream extends OutputStream {
JTextArea textArea;
public GuiOutputStream(JTextArea textArea) {
this.textArea = textArea;
}
@Override
public void write(int data) throws IOException {
textArea.append(new String(new byte[] { (byte) data }));
}
}
public void guiConsoleTest() {
System.out.println("Normal java console output");
JTextArea textArea = new JTextArea(); // Output text area
// Remember old output stream (optional)
PrintStream stdout = System.out;
stdout.println("Starting gui for console output"); // Still works
// Stream for output to gui
GuiOutputStream rawout = new GuiOutputStream(textArea);
// Set new stream for System.out
System.setOut(new PrintStream(rawout, true));
// Demo gui
JFrame window = new JFrame("Console test 2");
window.add(new JScrollPane(textArea));
window.setSize(500, 500);
window.setVisible(true);
// Test it (for 10 sec)
for (int i = 1; i <= 100; i++) {
System.out.println("Printing to gui console: " + i);
try {
Thread.sleep(100);
} catch (InterruptedException e) {
}
}
// Wait 1 sec
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
}
// Clean up and exit
window.dispose();
}
public static void main(String[] args) {
new RedirectAppOutputStream2().guiConsoleTest();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment