public class Main {
public static void main(String[] argv) {
String sValue = "5";
try {
int iValue = Integer.parseInt(sValue);
System.out.println(iValue);
} catch (NumberFormatException ex) {
ex.printStackTrace();
}
}
}