.
( !), System.out println , , (.. ).
EDIT: - println , , Thread.interrupted() true, thread.interrupt().
(.. , InterruptedException), InterruptedException, , RuntimeException:
System.setOut(new PrintStream(System.out) {
public void println(String s) {
if (Thread.interrupted()) throw new RuntimeException();
super.println(s);
}
});