Pass a string to the Integer class constructor and call the intValue()
public class Main { public static void main(String[] argv) { String sValue = "5"; try { int iValue = new Integer(sValue).intValue(); } catch (NumberFormatException ex) { ex.printStackTrace(); } } }