Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I made an application in Java that calculates the sum of all numbers up untill the input in the command line.

But, if one would put in a double or string in the command line i need to display an error message that says only real numbers can be put in.

How can i do this? I think it needs to be with exception or something?

public static void main(String[] args) {
 right here?
    int n    = Integer.parseInt(args[0]);

thanks!

share|improve this question

4 Answers

public static void main(String[] args) {
    try {
       int n    = Integer.parseInt(args[0]);
    } catch (NumberFormatException e) {
      //here you print the error
       System.out.println("Error: only real numbers can be put in");
       //or
      System.err.println("Error: only real numbers can be put in");
    }
}
share|improve this answer

The call to Integer.parseInt(args[0]) does the hard work for you, it throws a NumberFormatException That you can simply catch and print any error message you like.

public static void main(String[] args) {
    try {
        int n = Integer.parseInt(args[0]);
    } catch(NumberFormatException e){
        System.out.println("The input value given is not a valid integer.");
    }
}
share|improve this answer

Integer.parseInt(args[0]) will throw a NumberFormatException if it cannot parse the string to an int. Simply catch it to handle the problem e.g.:

public static void main(String[] args) {
    try{
        int n = Integer.parseInt(args[0]);
    }
    catch(NumberFormatException e){
        System.out.println("Bad user!");
    }
}
share|improve this answer
thanks very much! – sjaak Sep 8 '10 at 10:59

Check out the API Documentation or numerous tutorials Google spits out. This one straight from the official Java tutorials is usually a good bet: http://download-llnw.oracle.com/javase/tutorial/essential/exceptions/

Check out the information here too. You can also see what exception parseInt raises, by looking up the API documentation here.

I'm sure people are going to write the entire example up for you, in which case my answer is obsolete.

Try searching around, there's a ton of examples and tutorials on this kind of stuff online.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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