while ( input.hasNext() ) {
i = input.nextInt();
//System.out.println();
System.out.print("Bla: ");
}
this was just a test app/code. When I hit ctrl+z I just hear the ding Windows sound (aka you're doing it wrong sound <.<) and nothing happens, program continues running normally. I tested it in another app and input.hasNext() does return the correct True boolean value, it just won't recognize Ctrl+Z. Using Netbeans 6.9.1 and Windows 7.
inputis of typejava.util.Scanner. You're going to have to edit your post to show how you instantiated it. – Jim Garrison Jan 21 '11 at 4:34