When I run parseInt:
Integer.parseInt(myString);
it throws:
NumberFormatException: For input string: ""
Does this mean I have do something like this?
if(StringUtils.isNotBlank(myString))
return Integer.parseInt(myString);
else
return 0;
|
feedback
|
|
Well, you could use the conditional operator instead:
If you need to do this in multiple places, you'd probably want to put this into a separate method. Note that you should also consider situations where | |||
|
feedback
|
|
Wrap it with a thin method that does it, or use Commons Lang
| ||||
|
feedback
|
|
Yes. (Validate your inputs before making assumptions about what are in them. :-) +1 for already finding Apache's common-lang w/ | |||
|
feedback
|
|
Integer.parseInt(String) doesn't accept non numeric input, including nulls and empty strings. Either guard against that like you suggested, or catch the NFE. | |||
|
feedback
|
|
What you have is fine, but as a coding style I prefer to make tests "positive" (
or, more succinctly:
| |||
|
feedback
|