Here you can find the source of string2Int(String str)
public static int string2Int(String str)
//package com.java2s; public class Main { public static int string2Int(String str) { try {//from w w w. j av a 2 s . co m int value = Integer.valueOf(str); return value; } catch (Exception e) { // TODO: handle exception e.printStackTrace(); return 0; } } }