Exception 클래스의 변수를 argument 로 넣어 주면 String 형으로
에러 메시지가 출력 되는 함수를 만들어 테스트 해보았다
sample code 보면 바로 아실 수 있을 겁니다.
package test;
import java.io.ByteArrayOutputStream;
import java.io.PrintStream;
public class PrintStackTraceTest {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
try{
String[] a = null;
for(int i=0;i<a.length;i++){
}
}catch(Exception e){
//e.printStackTrace();
e.getMessage();
String str = getPrintStacTraceString(e);
System.out.println(str);
}
}
/**
* String 형으로 printStackTrace message 를 돌려 주는 method
* @param e
* @return
*/
public static String getPrintStacTraceString(Exception e){
String returnValue = "";
ByteArrayOutputStream out = new ByteArrayOutputStream();
PrintStream printStream = new PrintStream(out);
e.printStackTrace(printStream);
returnValue = out.toString();
return returnValue;
}
}
'JAVA' 카테고리의 다른 글
[ JAVA ] netty (비동기 이벤트 방식 네트워크 프레임워크) 사용법 2 ( client ) (0) | 2012.04.04 |
---|---|
[ JAVA ] netty (비동기 이벤트 방식 네트워크 프레임워크) 사용법 1 ( server ) (3) | 2012.04.04 |
[ JAVA ] Apache Commons 의 HttpClient 사용법 (0) | 2012.02.19 |
[ JAVA ] XML 만들기 (0) | 2012.01.18 |
[ JAVA ] String 두개 XOR 연산 (0) | 2011.10.19 |
댓글