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 {//www. j a va 2s .c o m int value = Integer.valueOf(str); return value; } catch (Exception e) { e.printStackTrace(); return 0; } } }