오류가 났어. 하하.
근데 그저 format오류라 그냥 무시하고 출력하기로 했어.
try catch문을 사용해서.
package com.my.test;
public class Test01 {
public static void main(String[] args) {
try {
String str = "93928";
System.out.println(Integer.parseInt(str));
} catch (NumberFormatException e) {
// NumberFormatException 이 발생할 경우 처리
} catch (Exception e) {
// Exception 이 발생할 경우 처리
}
}
}
이렇게 해버리면 에러는 무시하고 그대로 출력값이 나오더라구.
'ERRORs > JSP' 카테고리의 다른 글
Invalid escape sequence 에러 (1) | 2021.01.18 |
---|