Java String vers int

String phrase = "12"; 
int i; 

i = Integer.parseInt(phrase); 
Uninterested Unicorn