I'm wondering how to do something only if Integer.parseInt(whatever) doesn't fail.

More specifically I have a jTextArea of user specified values seperated by line breaks.

I want to check each line to see if can be converted to an int.

Figured something like this, but it doesn't work:

for(int i = 0; i < worlds.jTextArea1.getLineCount(); i++){
                    if(Integer.parseInt(worlds.jTextArea1.getText(worlds.jTextArea1.getLineStartOffset(i),worlds.jTextArea1.getLineEndOffset(i)) != (null))){}
 }

Any help appreciated.

link|improve this question

71% accept rate
2  
just handle NumberFormatException. – Bala R Jun 23 '11 at 15:05
feedback

7 Answers

up vote 1 down vote accepted
boolean parsable = true;
try{
Integer.parseInt(...valueStr...);

}catch(NumberFormatException e){
parsable = false;
}

keep in mind that I meant ParseException as the proper type of exception for the specific case

link|improve this answer
1  
Don't catch ALL exceptions. That's really bad practice. – Amir Raminfar Jun 23 '11 at 15:07
yes, u are right – fmucar Jun 23 '11 at 15:08
1  
NumberFormatException. You may as well get it right. It's documented. – EJP Jun 23 '11 at 23:01
+1 EJP, yes, better to put it as documented – fmucar Jun 24 '11 at 8:11
feedback

It would be something like this.

String text = textArea.getText();
Scanner reader = new Scanner(text).useDelimiter("\n");
while(reader.hasNext())
    String line = reader.next();

    try{
        Integer.parseInt(line);
        //it worked
    }
    catch(NumberFormatException e){
       //it failed
    }
}
link|improve this answer
feedback

parseInt will throw NumberFormatException if it cannot parse the integer. So doing this will answer your question

try{
Integer.parseInt(....)
}catch(NumberFormatException e){
//couldn't parse
}
link|improve this answer
feedback

Check if it is integer parseable

public boolean isInteger(String string) {
    try {
        Integer.valueOf(string);
        return true;
    } catch (NumberFormatException e) {
        return false;
    }
}

or use Scanner

Scanner scanner = new Scanner("Test string: 12.3 dog 12345 cat 1.2E-3");

while (scanner.hasNext()) {
    if (scanner.hasNextDouble()) {
        Double doubleValue = scanner.nextDouble();
    } else {
        String stringValue = scanner.next();
    }
}

or use Regular Expression like

private static Pattern doublePattern = Pattern.compile("-?\\d+(\\.\\d*)?");

public boolean isDouble(String string) {
    return doublePattern.matcher(string).matches();
}
link|improve this answer
feedback

You can use the try..catch statement in java, to capture an exception that may arise from Integer.parseInt().

Example:

try {
  int i = Integer.parseint(stringToParse);
  //parseInt succeded
} catch(Exception e)
{
   //parseInt failed
}
link|improve this answer
Why the downvote? This is a valid answer, and though the Exception catching is too vague for good practice it will work. – josh.trow Jun 23 '11 at 15:12
@josh.trow, throwing an exception when doing a parseint is also bad practice as it really is not something truly exceptional, one could either provide a parsable method (to check if it can be parsed) or convert it to a weird value (like Ruby and perl) – Yet Another Geek Jun 23 '11 at 15:14
So what is the exception for? – EJP Jun 23 '11 at 23:01
feedback

You can use a scanner instead of try-catch:

Scanner scanner = new Scanner(line).useDelimiter("\n");
if(scanner.hasNextInt()){
    System.out.println("yes, it's an int");
}
link|improve this answer
feedback

instead of trying & catching expressions.. its better to run regex on the string to ensure that it is a valid number..

link|improve this answer
Better how? Why reinvent the wheel? Why run the risk that the regex doesn't match what parseInt() does? Why waste the time and the money? – EJP Jun 23 '11 at 23:03
when an exception there is an overhead (for the JVM) to prepare the stack trace & then continue with executing the program (this is a bit time consuming)... its always better to check the expression before parsing it.. – Anantha Sharma Jun 24 '11 at 0:17
The overhead is insignificant, and the other issues I raised are not. Your blanket statement is not supportable. – EJP Jun 24 '11 at 1:25
feedback

Your Answer

 
or
required, but never shown

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