728x90
반응형

NumberFormatException : 요약하면 숫자형식 에러

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
String str = "123";
if (isStringDouble(str))
    System.out.println("숫자입니다.");
else
    System.out.println("숫자가 아닙니다.");
}
 
public static boolean isStringDouble(String s) {
    try {
        Double.parseDouble(s);
        return true;
    } catch (NumberFormatException e) {
        return false;
    }
}
cs

 

출처 : http://mwultong.blogspot.com/2006/12/java-isnum-isdouble.html

728x90
반응형

'코딩 삽질' 카테고리의 다른 글

[html, asp] 게시글이 한줄로 나오는 것 수정  (0) 2019.11.24
[asp] write error log at text file  (0) 2019.11.24
[oracle] GRANT (권한)  (0) 2019.11.17
[oracle] link db  (0) 2019.11.17
[git] remote 추가  (0) 2019.11.17

+ Recent posts