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
The only way you wouldn't see System.out
output in the console is if the method System.setOut
has been invoked. This method is invoked to redirect output to the graphical Java Console, but I don't know of any other realistic circumstance in which it would be redirected away from the Java Console unless you do so voluntarily.