1. String to int String num = "1"; int number = Integer.parseInt(num); 2. int to String int number = 123; String num = Integer.toString(number); 단, 만약 int로 변환하려는 값이 숫자가 아닌 경우에는 어떻게 예외처리를 할지 아래와 같이 고민해야 한다. int tmp; try { tmp = Integer.parseInt("abc") } catch ( NumberFormatException e ) { tmp = 0; }