2122232425262728293031
jc.captureStdOut(); System.out.println("Captured output"); // brown box jc.fillArea(' ', Color.WHITE, new Color(100,70,30), 20, 20, 3, 3); jc.setCursorPos(0, 0); Frames.display(jc,"JConsole test application");
3435363738394041424344
int iterations=0; while (start>(System.currentTimeMillis()-1000*SECS)) { for (int y=10; y<20; y++) { for (int x=10; x<80; x++) { jc.fillArea((char)Rand.r(256), Colours.getColor(Rand.nextInt()), Colours.getColor(Rand.nextInt()), x, y, 1, 1); } }