I am accepting an input from user as an integer using Scanner.nextInt(). How do I verify that he enters an integer, and not an alphabetic character?
|
|
||||
|
|
|
The
|
|||
|
|
|
It will throw an exception if int is not entered as input. Just catch that exception and now you know the user has entered an unparsable value. |
|||
|
|
|
If a user enters an alphabet and you expect an int, you can test for the int with Scanner.hasNextInt() and if it is false message the user. |
|||
|
|
|
|||
|
|
|
Wrap it in a try / catch. See this post.
Also, if you notice, in the post this is wrapped up in a loop until a valid integer is input. |
||||
|
|
|
I guess you could use a try catch block if there is an Exception if it's not an int.
|
||||
|
|