I understood that anything to standard out (System.out) would appear in the Java Console window (when it\'s enabled). I spotted somewhere though that there might be
Depending on terminal settings it can happen that the output is not written until a newline character is sent as well. So if you do System.out.print("test") it might not appear immediately.
On Windows this is usually not the case, but on Unix terminals this is quite common.