Mega Code Archive

 
Categories / Java Tutorial / Data Type
 

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();     }   } }