make string a int code example
Example 1: java string to integer
String example = "1";
int converted = Integer.parseInt(example);
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()
}
}