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

In my day to day web application development there are many instances where we need to take some number inputs from the user.

Then pass on this number input to may be service or DAO layer of the application.

At some stage since its a number (integer or float), we need to convert it into Integer as shown in the following code snippet.

String cost = request.getParameter("cost");

if (cost !=null && !"".equals(cost) ){
    Integer intCost = Integer.parseInt(cost);
    List<Book> books = bookService . findBooksCheaperThan(intCost);  
}

Here in the above case I have to check if the input is not null or if there is no input (blank) or sometimes there is a possibility of a non number inputs e.g. blah, test etc.

What is the best possible way of handling such situations?

share|improve this question
2  
if (cost !=null && !"".equals(cost) ) === if (!"".equals(cost)) ;) – Peter Lawrey Mar 31 '11 at 12:10
kindly look at my answer. – Suresh Sankar Mar 31 '11 at 12:12
2  
@peter-lawrey: Incorrect. What if cost == null? They're not the same check at all. The former expression would return false, the latter would return true. – occulus Mar 31 '11 at 12:30

14 Answers

up vote 9 down vote accepted

Just catch your exception and do proper exception handling:

if (cost !=null && !"".equals(cost) ){
        try {
           Integer intCost = Integer.parseInt(cost);
           List<Book> books = bookService . findBooksCheaperThan(intCost);  
        } catch (NumberFormatException e) {
           System.out.println("This is not a number");
           System.out.println(e.getMessage());
        }
    }
share|improve this answer
+1: I would add e.getMessage() to the error message. – Peter Lawrey Mar 31 '11 at 12:11
Yes. The sysout is only an example. he has to do proper exception handling anyway. But I'll add it. thanks. – RoflcoptrException Mar 31 '11 at 12:12
+1: Finally a sane answer. The only thing I would change is to move a call to bookService outside the try block, as this particular exception only applies to parsing cost string. – Alexander Pogrebnyak Mar 31 '11 at 12:30
@Alexander Pogrebnyak yes that's true but I think it depends on how the OP wants its logic. He can't find a cheaper book without a cost. (btw... you have the same name as a professional soccer player in the bundesliga :D) – RoflcoptrException Mar 31 '11 at 12:32

As always, the Jakarta Commons have at least part of the answer :

NumberUtils.isNumber()

This can be used to check most whether a given String is a number. You still have to choose what to do in case your String isnt a number ...

share|improve this answer
  1. use regex to tell whether it is a number.
  2. surround the code with try/catch.
share|improve this answer
3  
I beleive regexp is not appropriate solution for this. How do you test in regexp if the number entered fits into Integer? – Basilevs Mar 31 '11 at 12:10
Exceptions should be used in exceptional circumstances, not for normal run-of-the-mill expected situations such as "nothing was input". Exceptions are expensive to set up. – occulus 2 mins ago edit – occulus Mar 31 '11 at 12:11
1  
"exceptions are expensive to set up" - an exception is only an entry in the exception table with a pointer. So the only thing that makes them expensive is that the JIT is unlikely to optimize them and the extra indirection. If we assume that the exceptional case (invalid number) is rare, that's no real problem. And the regex solution does not work (well or to be more exact it'd be extremely inefficient since we'd have to do it exhaustive) – Voo Mar 31 '11 at 12:17
Exceptions are expensive to execute, not to set up. It is open to discussion depending on what you call expensive. We could argue that this is an exceptional case, the normal case is that the user enters a valid number, an invalid number is an exception. – Guillaume Mar 31 '11 at 12:19

one posibility: catch the exception and show an error message within the user frontend.

edit: add an listener to the field within the gui and check the user inputs there too, with this solution the exception case should be very rare...

share|improve this answer
Exceptions should be used in exceptional circumstances, not for normal run-of-the-mill expected situations such as "nothing was input". Exceptions are expensive to set up. – occulus Mar 31 '11 at 12:08
1  
True, but as long as we don't get out parameters in Java, you hardly get around (the regex method is faulty!). Also why would the exception be expensive to "set up"? It's only an entry in the exception table, so as long as you don't take the exceptional code path (and that should be rare) there's no real performance problem. – Voo Mar 31 '11 at 12:10
Think Voo is right, how else would you check this? – Tobiask Mar 31 '11 at 12:12
Sorry, what do you mean "you hardly get around"? And "get out parameters"? – occulus Mar 31 '11 at 12:16
"hardly get around [using the exception]" it should be. The correct regex approach would need an exhaustive list of numbers (all numbers < 10 digits ok, and then 2000000000|2000000001|..|2147483647). Out parameters would be obviously the best solution i.e. get a signature boolean tryParseInt(int val, out int erg) - see C# for one language that has this. – Voo Mar 31 '11 at 12:24

Exceptions in recent versions of Java aren't expensive enough to make their avoidance important. Use the try/catch block people have suggested; if you catch the exception early in the process (i.e., right after the user has entered it) then you're not going to have the problem later in the process (because it'll be the right type anyway).

Exceptions used to be a lot more expensive than they are now; don't optimize for performance until you know the exceptions are actually causing a problem (and they won't, here.)

share|improve this answer

I don't know about the runtime disadvantages about the following but you could run a regexp match on your string to make sure it is a number before trying to parse it, thus

cost.matches("-?\\d+\\.?\\d+")

for a float

and

cost.matches("-?\\d+")

for an integer

EDIT

please notices @Voo's comment about max int

share|improve this answer
1  
That's no solution! The regex will cost = "9999999999999999999999" just fine, before the parser throws the exception. – Voo Mar 31 '11 at 12:12
@Voo, notice my edit above – Yaneeve Mar 31 '11 at 12:12
1  
Thanks. I think the only way to get a 100% correct regex would be an exhaustive approach for the larger values, which will be extremely inefficient. So I fear we'll have to live with the bad style of "misusing" exceptions in this case until Java gets out parameters. – Voo Mar 31 '11 at 12:20

In Java there's sadly no way you can avoid using the parseInt function and just catching the exception. Well you could theoretically write your own parser that checks if it's a number, but then you don't need parseInt at all anymore.

The regex method is problematic because nothing stops somebody from including a number > INTEGER.MAX_VALUE which will pass the regex test but still fail.

share|improve this answer

Put a key listener in the front end which will beep if the user inputs a non-digit.

share|improve this answer
1  
in a morse-code it could also provide some kind of server-side feedback ;) – jan groth Mar 31 '11 at 12:25

I suggest to do 2 things:

  • validate the input on client side before passing it to the Servlet
  • catch the exception and show an error message within the user frontend as Tobiask mentioned. This case should normally not happen, but never trust your clients. ;-)
share|improve this answer
1  
IMHO Client side validation can only be a part of the validation process, but nothing you should rely on (unless you want to open the window for all kinds of attack patterns)... – jan groth Mar 31 '11 at 12:16
That's what I said: never trust your clients. Still, it's something that should be checked on client-side as well. Simple input validation on server-side is not very efficient. As others mentioned there are probably frameworks/ libraries which can help you with this. Maybe even the new Bean Validation (Java EE 6)? (I haven't tested it yet.) – Puce Mar 31 '11 at 12:25

That depends on your environment. JSF for example would take the burden of manually checking and converting Strings <-> Numbers from you, Bean Validation is another option.

What you can do immediately in the snippet you provide:

  1. Extract method getAsInt(String param), in it:
  2. Use String.isEmpty() (Since Java 6),
  3. surround with try / catch

What you should definitely think about if you happen to write a lot of code like this:

public void myBusinessMethod(@ValidNumber String numberInput) {
// ...    
}

(This would be interceptor-based).

Last but not least: Save the work and try to switch to a framework which gives you support for these common tasks...

share|improve this answer

To Determine if a string is Int or Float and to represent in longer format.

Integer

 String  cost=Long.MAX_VALUE+"";
  if (isNumeric (cost))    // returns false for non numeric
  {  
      BigInteger bi  = new BigInteger(cost);

  }

public static boolean isNumeric(String str) 
{ 
  NumberFormat formatter = NumberFormat.getInstance(); 
  ParsePosition pos = new ParsePosition(0); 
  formatter.parse(str, pos); 
  return str.length() == pos.getIndex(); 
} 
share|improve this answer
To repeat myself: The regex will allow strings like "9999999999999999999999", but the parser will throw an exception. The same goes for the float regex. – Voo Mar 31 '11 at 12:14
@Voo: for the above code 9999999999999999999999 works fine. let me know if am wrong? – Suresh Sankar Mar 31 '11 at 12:23
1  
Your code does allow 9999999999999999999999 as input, which if you try to parse it in the if will throw an exception. The real problem isn't just "is this string a number?" but "Is this string a number and can be represented as an integer?". – Voo Mar 31 '11 at 12:28
@Voo: thanks i got it. – Suresh Sankar Mar 31 '11 at 12:29

You can avoid the unpleasant looking try/catch or regex by using the Scanner class:

String input = "123";
Scanner sc = new Scanner(input);
if (sc.hasNextInt())
    System.out.println("an int: " + sc.nextInt());
else {
    //handle the bad input
}
share|improve this answer
Scanner is using Integer.parseInt internally so there is no avoiding try/catch but sweeping them under the carpet. – Łukasz Lech May 14 at 7:26
Interesting... I didn't think to look at the source. In Scanner.hasNext they match the string buffer against an integer pattern though, so I'm not convinced there's a way to make it actually throw an nfe, even internally. If you've checked hasNextInt(), nextInt() should be safe too. – Brian May 14 at 19:19

Try to convert Prize into decimal format...

import java.math.BigDecimal;
import java.math.RoundingMode;

public class Bigdecimal {
    public static boolean isEmpty (String st) {
        return st == null || st.length() < 1; 
    }
    public static BigDecimal bigDecimalFormat(String Preis){        
        //MathContext   mi = new MathContext(2);
        BigDecimal bd = new BigDecimal(0.00);

                         bd = new BigDecimal(Preis);


            return bd.setScale(2, RoundingMode.HALF_UP);

        }
    public static void main(String[] args) {
        String cost = "12.12";
        if (!isEmpty(cost) ){
            try {
               BigDecimal intCost = bigDecimalFormat(cost);
               System.out.println(intCost);
               List<Book> books = bookService.findBooksCheaperThan(intCost);  
            } catch (NumberFormatException e) {
               System.out.println("This is not a number");
               System.out.println(e.getMessage());
            }
        }

}
}
share|improve this answer

Well, I don't think it was a good design for Sun to throw an exception in such trivial task like integer parsing. Even if exceptions are quite fast, there's no way they will be as fast as simply returning null.

The best fastest solution would be to copy Integer.parseInt method, change return type to Integer and replace throw NumberFormatException with return null:

public static Integer parseInt(String s, int radix) {
    if (s == null) {
        return null;
    }
    if (radix < Character.MIN_RADIX) {
        return null;
    }
    if (radix > Character.MAX_RADIX) {
        return null;
    }
    int result = 0;
    boolean negative = false;
    int i = 0, max = s.length();
    int limit;
    int multmin;
    int digit;

    if (max > 0) {
        if (s.charAt(0) == '-') {
            negative = true;
            limit = Integer.MIN_VALUE;
            i++;
        } else {
            limit = -Integer.MAX_VALUE;
        }
        multmin = limit / radix;
        if (i < max) {
            digit = Character.digit(s.charAt(i++), radix);
            if (digit < 0) {
                return null;
            } else {
                result = -digit;
            }
        }
        while (i < max) {
            digit = Character.digit(s.charAt(i++), radix);
            if (digit < 0) {
                return null;
            }
            if (result < multmin) {
                return null;
            }
            result *= radix;
            if (result < limit + digit) {
                return null;
            }
            result -= digit;
        }
    } else {
        return null;
    }
    if (negative) {
        if (i > 1) {
            return result;
        } else { 
            return null;
        }
    } else {
        return -result;
    }
}
share|improve this answer
it would be nice if the downvoter would explain his reasons, because this is tested and working – Łukasz Lech May 16 at 9:22

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.