Here you can find the source of convertStringToInteger(String value)
public static int convertStringToInteger(String value)
//package com.java2s; //License from project: Open Source License public class Main { public static int convertStringToInteger(String value) { return convertStringToInteger(value, -1); }/*from w w w.j a v a 2 s . com*/ public static int convertStringToInteger(String value, int fallback) { try { return Integer.parseInt(value); } catch (NumberFormatException e) { return fallback; } } }