public class Main { public static void main(String[] argv) { String sValue = "5"; try { int iValue = new Integer(sValue).intValue(); } catch (NumberFormatException ex) { ex.printStackTrace(); } } }