import java.util.*;

public class June16{
    public static void main(String[] args){
        Scanner kb = new Scanner(System.in);
        double b=0;
           boolean checkInput = true;
        do{
            try{
                System.out.println("Input b : ");
                b = kb.nextDouble();
                checkInput = false;
            }catch(InputMismatchException ime){
            }
        }while(checkInput);
    }
}

After InputMismatchException is thrown, why my program not prompt for input? :D

link|improve this question

71% accept rate
feedback

2 Answers

From the documentation:

When a scanner throws an InputMismatchException, the scanner will not pass the token that caused the exception, so that it may be retrieved or skipped via some other method.

This is why you end up in an infinite loop if you don't enter a valid double. When you handle the exception, move to the next token with kb.next().

link|improve this answer
feedback

Because if the Scanner.nextDouble() failes it leaves the token on the queue, (which is then read again and again causing it to fail over and over again).

Try the following:

try {
    // ...
} catch (InputMismatchException ime) {
    kb.next();  // eat the malformed token.

}

ideone.com demo illustrating working example

link|improve this answer
queue 15 chars go here – Woot4Moo Jun 16 '11 at 15:47
feedback

Your Answer

 
or
required, but never shown

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