convert string to int in jva code example
Example 1: java convert String to int
int i = Integer.parseInt(myString);
Example 2: java how to convert string to int
class Scratch{
public static void main(String[] args){
String str = "50";
System.out.println( Integer.parseInt( str )); // Integer.parseInt()
}
}