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.

link|improve this question
Can you provide more information as to the context of the program? – berry120 Jan 20 '11 at 1:03
Assuming input is of type java.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
feedback

1 Answer

package testapp;

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner input = new Scanner(System.in);
        int i;

        while ( input.hasNext() ) {
            i = input.nextInt();
            //System.out.println();
            System.out.print("Bla: \n");
        }
    }
}

Here's the whole code. I understand this app doesn't do anything useful at all, I was just trying to see how hasNext works, and it doesn't. Ctrl+Z does nothing at all.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.