So here is my current code for catching an InputMismatchException error
int weapon = 0
boolean selection = true;
while(selection) {
try {
System.out.println("Pick number 1, 2, or 3.");
weapon = scan.nextInt();
selection = false;
} catch(InputMismatchException e) {
System.out.println("Choose 1,2,3");
weapon = scan.nextInt();
}
}
I'm trying to make sure that an int is entered and not anything else. Scanner class as already been implemented and 'scan' will act as it for me.
Thanks for any efforts to help!
Try this:
This will make sure it is an integer and it will keep asking until it gets it.
In the first place, you already have a loop with which to prompt for and scan the desired
int
. You do not need to duplicate that behavior in your exception handler. What you do need to do, however, is discard the mismatching token from the scanner in order to allow a new one to be scanned.As a secondary matter, your
selection
variable appears to be redundant.It looks like this might do what you're after: