vote up 1 vote down star

For a program I am writing, I need to ask a user for an integer between 1 and 8. I've tried multiple (cleaner) ways of doing this but none of them worked, so I'm left with this:

    int x = 0;
    while (x < 1 || x > 8)
    {   
        System.out.print("Please enter integer  (1-8): ");

        try
        {
            x = Integer.parseInt(inputScanner.next());
        }
        catch(NumberFormatException e)
        {
            x = 0;
        }
    }

Where inputScanner is a Scanner. Surely there is a better way?

flag

44% accept rate

4 Answers

vote up 0 vote down

Apache Commons is your friend. See NumberUtils.toInt(String, int)

link|flag
Does it worth to bring a new lib just for one function? : - / – Oscar Reyes Jan 22 '09 at 23:13
vote up 0 vote down
String input;
int number;

while (inputScanner.hasNextLine())
{
    input = inputScanner.nextLine();

    if (input.equals("quit")) { System.exit(0); }
    else
    {
        //If you don't want to put your code in here, make an event handler
        //that gets called from this spot with the input passed in
        try
        {
            number = Integer.parseInt(input);
            if ((number < 1) || (number > 8))
            { System.out.print("Please choose 1-8: "); }
            else { /* Do stuff */ }
        }
        catch (NumberFormatException e) { number = 0; }
    }
}

I always like to pull in the full string so you can be sure that the user pushed the Enter button. If you just use inputScanner.nextInt() you can put two ints on a line and it will pull in one, then the other.

link|flag
vote up 1 vote down

Using the nextInt() is already an improvement compare to simply using the next() method. And before that, you can use the hasNextInt() to avoid haing all this bunch of useless exceptions.

Resulting in something like this:

int x = 0;
do {
  System.out.print("Please...");
  if(scanner.hasNextInt()) x = scanner.nextInt();
  else scanner.next();
} while (x < 1 || x > 8);
link|flag
That results in an infinite loop if you provide a string. – Logan Serman Jan 22 '09 at 22:12
While I know your code is syntactically correct, having a if then on one line without braces is none standard. From Sun: Note: if statements always use braces {}. Avoid the following error-prone form: if (condition) statement; //AVOID! THIS OMITS THE BRACES {}! – WolfmanDragon Jan 22 '09 at 22:39
And he also omitted the semicolon after the while(), yet I somehow managed to understand his meaning. :) – mmyers Jan 22 '09 at 22:44
Oh my Gosh, yeah, this fucking semicolon! ;-) WolfmanDragon > Please get a life. Your comment make sens if you're in a big piece of code or in a somehow critical part of your code. Here, it's a simple snippet, a stupid SNIPPET. – gizmo Jan 22 '09 at 22:57
I thought a snip-it was one of those things the kids put around their ankle and jumped over while it spun in circles? – d03boy Jan 22 '09 at 23:11
show 4 more comments
vote up 3 vote down

Scanner does regular expressions, right? Why not check if it matches "^[1-8]$" first?

link|flag

Your Answer

Get an OpenID
or

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