public int safeLongToInt(long l) { int i = (int)l; if ((long)i != l) { throw new IllegalArgumentException(l + " cannot be cast to int without changing its value."); } return i; }
반응형
'JAVA' 카테고리의 다른 글
ArrayList sor하기 (0) | 2015.11.26 |
---|---|
TreeMap 을 이용한 map계열 정렬 (0) | 2015.11.26 |
clob데이터를 string으로 변경하는 메소드 (0) | 2015.08.26 |
POI/jfreeChart 이용한 엑셀파일 만들기 (0) | 2015.08.26 |
common-io 를 사용한 파일관련 class (0) | 2015.08.04 |