문자열을 정수로 변환할 수 있는 함수를 제공합니다.

 

Integer.parseInt() 는 int형으로 반환합니다.

Integer.valueOf() 는 Integer을 반환합니다.

public class test {
    public static void main(String[] args) {
        String str1 = "12345";
        String str2 = "-12345";

        System.out.println("ParseInt : " + Integer.parseInt(str1));
        System.out.println("ValueOf : " + Integer.valueOf(str2));
    }
}