Java Integer Create toInt(String str)

Here you can find the source of toInt(String str)

Description

to Int

License

Mozilla Public License

Declaration

public static int toInt(String str) 

Method Source Code

//package com.java2s;
//License from project: Mozilla Public License 

public class Main {
    public static int toInt(String str) {
        return toInt(str, 0);
    }//from w  w  w. ja  v  a 2  s. c o m

    public static int toInt(String str, int defaultValue) {
        if (str == null) {
            return defaultValue;
        }

        try {
            return Integer.parseInt(str);
        } catch (NumberFormatException nfe) {
            return defaultValue;
        }
    }
}

Related

  1. toInt(String sInt)
  2. toInt(String str)
  3. toInt(String str)
  4. toInt(String str)
  5. toInt(String str)
  6. toInt(String str)
  7. toInt(String str)
  8. toInt(String str)
  9. toInt(String str)