Here you can find the source of toInt(String s)
public static int toInt(String s)
//package com.java2s; public class Main { /**/*from w ww. ja v a 2 s. co m*/ * Converts a string to an int. */ public static int toInt(String s) { return Integer.valueOf(s.trim()).intValue(); } }