Possible exception if User enters String instead of Int

53,310

Solution 1

How about this?

public class Sample {
    public static void main (String[] args) {
        Scanner newScan = new Scanner (System.in);

        System.out.println ("Enter a 3 digit number: ");
        String line = newScan.nextLine ();
        int digit;
        while (true) {
            if (line.length () == 3) {
                try {
                    digit = Integer.parseInt (line);
                    break;
                }
                catch (NumberFormatException e) {
                    // do nothing.
                }
            }

            System.out.println ("Error!(" + line + ") Please enter a 3 digit number: ");
            line = newScan.nextLine ();
        }

        System.out.println (digit);
    }
}

regexp version:

public class Sample {
    public static void main (String[] args) {
        Scanner newScan = new Scanner (System.in);

        System.out.println ("Enter a 3 digit number: ");
        String line = newScan.nextLine ();
        int digit;

        while (true) {
            if (Pattern.matches ("\\d{3}+", line)) {
                digit = Integer.parseInt (line);
                break;
            }

            System.out.println ("Error!(" + line + ") Please enter a 3 digit number: ");
            line = newScan.nextLine ();
        }

        System.out.println (digit);
    }
}

Solution 2

Here nextInt method itself throws an InputMismatchException if the input is wrong.

try {
  digit = newScan.nextInt() 
} catch (InputMismatchException e) {
  e.printStackTrace();
  System.err.println("Entered value is not an integer");
}

This should do.

Solution 3

Embed the code for Reading the int in try catch block it will generate an exception whenever wrong input is entered then display whatever message you want in catch block

Solution 4

You want an Exception to occur if the user enters a string such as 'abc' instead of an integer value then the InputMismatchException is right for you.

Let me give a basic example for you.

public static void main(String[] args)
    {
        Scanner ip = new Scanner(System.in);
        int a; 
        System.out.println("Enter Some Input");
        try{
            a = ip.nextInt();
        }
        catch(InputMismatchException msg){
            System.out.println("Input Mismatch Exception has occured " + msg.getMessage());
        }
    }

Solution 5

How I would do it is using an if statement. The if statement should be like this:

if(input.hasNextInt()){
    // code that you want executed if the input is an integer goes in here    
} else {
   System.out.println ("Error message goes here. Here you can tell them that you want them to enter an integer and not a string.");
}

Note: If you want them to enter a string rather than an integer, change the condition for the if statement to input.hasNextLine() rather than input.hasNextInt() .

Second Note: input is what I named my Scanner. If you name yours pancakes then you should type pancakes.hasNextInt() or pancakes.hasNextLine().

Hope I helped and good luck!

Share:
53,310
binary101
Author by

binary101

Updated on April 20, 2020

Comments

  • binary101
    binary101 about 4 years

    I am just playing with Java.I'm trying to force my program to only accept 3 digit numbers. I believe I have successfully done this using a while loop (please correct me if I'm wrong). But how do I go about printing an error statement if the user enters a string. eg: "abc".

    My code:

        import java.util.Scanner;
        public class DigitSum {
    
        public static void main(String[] args) {
    
        Scanner newScan = new Scanner(System.in);
    
            System.out.println("Enter a 3 digit number: ");
            int digit = newScan.nextInt();
    
            while(digit > 1000 || digit < 100)
                {           
                 System.out.println("Error! Please enter a 3 digit number: ");
                 digit = newScan.nextInt();
                }
    
            System.out.println(digit);
           }
        }
    
  • binary101
    binary101 over 11 years
    This is perfect. Thanks very much. Its exactly what i was trying to achieve. Thanks to everyone though. All your answers are valid. This one works better for me though :D
  • binary101
    binary101 over 11 years
    This is very handy to know. Thank you.
  • Ruzia
    Ruzia over 11 years
    "Integer.parseInt()" is not essence. You are able to use regexp instead of "Integer.parseInt()".
  • LoganS
    LoganS over 11 years
    Look at your answer Ruzia, you used Integer.parseInt() I think thats very essence (whatever the heck that means). Also why did you downvote my answer considering you took it?
  • binary101
    binary101 over 11 years
    Who me? I haven't down voted anybody.I only just understand the Integer.parseInt(). Not sure what regexp means...
  • Ruzia
    Ruzia over 11 years
    > JonH I think essence is while loop code. "Integer.parseInt()" is one of the option.