Android String to Int Convert getInt(String str, int defaultValue)

Here you can find the source of getInt(String str, int defaultValue)

Description

get Int

Parameter

Parameter Description
str a parameter
defaultValue a parameter

Declaration

public static int getInt(String str, int defaultValue) 

Method Source Code

//package com.java2s;

public class Main {
    /**//  w w w.j a  v a 2s. com
     * @param str
     * @param defaultValue
     * @return
     */
    public static int getInt(String str, int defaultValue) {
        if (str == null)
            return defaultValue;
        try {
            return Integer.parseInt(str);
        } catch (Exception e) {
            return defaultValue;
        }
    }
}

Related

  1. toNumber(String str)
  2. amount2String(String amount)
  3. String2Int(String str)
  4. string2Int(String str)
  5. isTextInteger(String texto)
  6. getIntFromStr(String str)
  7. getIntValue(String str)
  8. getFirstInteger(String value)
  9. tryParse(String value, int defaultValue)