aspose file tools
The moose likes Java in General and the fly likes Looping in exceptions Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "Looping in exceptions" Watch "Looping in exceptions" New topic
Author

Looping in exceptions

Carlos Obregon
Greenhorn

Joined: May 26, 2009
Posts: 18
I'm trying to catch a number from a Scanner. I thought that I could catch the InputMismatchException and re-ask the user to submit another real number.

I use this but if I raise the exception it keeps in an infinite loop:



Thanks!
Campbell Ritchie
Sheriff

Joined: Oct 13, 2005
Posts: 32620
    
    4
Because of the exception, the done variable remains false for ever. The Scanner continues to look at the token which wasn't a number, so consume that token with a call to in.next(); inside the catch. No need to do anything with that token.

Then you can enter a new token, and the loop can go round once more.
Rob Spoor
Sheriff

Joined: Oct 27, 2005
Posts: 19216

You shouldn't use exceptions this way if there are valid checking methods available.
An improved version:


SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
 
I agree. Here's the link: http://zeroturnaround.com/jrebel
 
subject: Looping in exceptions
 
Similar Threads
Initial variables before a try\catch block
Problem with PrintWriter and another Problem with Inputhandling
How to reiterate a do while loop after an exception is caught, run time error handling issue
try...catch blocks giving <identifier> expected error
Unexpected Recursion