Here you can find the source of formatInt(String number)
public static int formatInt(String number)
//package com.java2s; //License from project: Apache License public class Main { public static int formatInt(String number) { try {// w w w . ja va 2 s . c o m return new Integer(number); } catch (Exception e) { } return -1; } }