I would like to receive a Double from the user and handle the exception thrown in case the user didn't input a double/int; in that case I'd like to ask the user to insert the amount again. My code gets stuck in a loop if the exception is caught, and keeps printing "Insert amount".
private static double inputAmount() {
Scanner input = new Scanner(System.in);
while (true) {
System.out.println("Insert amount:");
try {
double amount = input.nextDouble();
return amount;
}catch (java.util.InputMismatchException e) {continue;}
}
}
Thank you in advance.
Your program enters an infinite loop when an invalid input is encountered because nextDouble()
does not consume invalid tokens. So whatever token that caused the exception will stay there and keep causing an exception to be thrown the next time you try to read a double.
This can be solved by putting a nextLine()
or next()
call inside the catch
block to consume whatever input was causing the exception to be thrown, clearing the input stream and allowing the user to input something again.