Exception 관련 처리를 임의로 가공하여 처리하고 싶을때 편의를 제공해 주는 apache commons-lang package 에 있는 library 이다.
http://commons.apache.org/proper/commons-lang/
사용예:
String message = null; try { String str = null str.toUpperCase(); } catch (Exception e) { message = ExceptionUtils.getFullStackTrace(e); }
System.out.println(message); |
이보다 다양한 기능을 제공하고 있으니 documentation 을 참고하자.
javadoc api: http://commons.apache.org/proper/commons-lang/javadocs/api-release/index.html
'Programming > Java' 카테고리의 다른 글
IntelliJ GenerateSerialVersionUID (0) | 2013.09.13 |
---|---|
maven - set properties file content from command line (0) | 2013.08.30 |
Java 프로그램에서 garbage collection 이 얼마나 일어나는 지 알아 내기 (0) | 2013.05.14 |
Java 에서 자원 할당하고 해제하기 (괜찮은 패턴) (0) | 2013.05.14 |
Sorted Array to Binary Search Tree - 정렬된 배열을 이진 탐색 트리로 변환 (0) | 2013.04.23 |