List

목요일, 12월 10, 2015

Integer 여부 확인 메서드


  • parameter 등으로 받아온 값이 int type 인지 check 하는 method

1
2
3
4
5
6
7
8
9
10
11
12
13
public boolean isInteger(String in){
        try{
            Integer.parseInt(in);
        }catch(NumberFormatException e){
            return false;
        }catch(NullPointerException e){
            return false;
        }
        return true;
    }
cs


  • if 문 등에 넣으면 됨!!


댓글 없음:

댓글 쓰기