Simple Way to Convert String to Integer :
String str="12345";
int i= Integer.parseInt(str);
int j= Integer..valueOf(str);
Ex:
public static void main(String args[]){
String str="12345";
int j= Integer.valueOf(str);
System.out.println("Integer :"+j);
}
}
Output :
Integer :12345
No comments:
Post a Comment