- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Link
- 재능이의 돈버는 일기
- StresslessLife
- K_JIN2SM
- 소소한 일상
- My Life Style & Memory a Box
- Blog's generation
- 공감 스토리
- 취객의 프로그래밍 연구실
- Love Me
- Dream Archive
- 세상에 발자취를 남기다 by kongmingu
- hanglesoul
- 카마의 IT 초행길
- 느리게.
- 미친듯이 즐겨보자..
- Joo studio
- Gonna be insane
- 악 다 날아갔어!! 갇대밋! 왓더...
- xopowo05
- 맑은공기희망운동
- 엔지니어 독립운동
- 혁준 블로그
- Simple in Complex with Simple
- 무의식이 의식을 지배한다
드럼치는 프로그래머
[JAVA] 예외의 printStacktrace의 값을 String으로 얻기 본문
예외가 발생했을 때, stack trace를 String으로 받는 방법입니다.
import java.io.ByteArrayOutputStream;
import java.io.PrintStream;
public class GetPrintStackTraceIntoString {
public static void main(String[] args) {
Exception e = new Exception("my exception");
ByteArrayOutputStream out = new ByteArrayOutputStream();
PrintStream pinrtStream = new PrintStream(out);
// 걍 e.printStackTrace()하면 System.out에 찍는데,
// 출력할 PrintStream을 생성해서 건네 줍니다.
e.printStackTrace(pinrtStream);
String stackTraceString = out.toString(); // 찍은 값을 가져오고.
System.out.println("stack trace="+stackTraceString);
}
}
/*
* result
stack trace=java.lang.Exception: my exception
at GetPrintStackTraceIntoString.main(GetPrintStackTraceIntoString.java:12)
*/
'★─Programing > ☆─JAVA' 카테고리의 다른 글
[JAVA] txt파일 이어쓰기 (0) | 2013.06.03 |
---|---|
[JAVA] callback function이 필요하다면 interface를 이용하자 (3) | 2013.06.03 |
[JAVA] 대소문자 구분 없이 문자열 바꾸기/치환 (0) | 2013.05.21 |
[JAVA] try catch finally 사용 시 문제점 (0) | 2013.05.09 |
[JAVA] TCP 소켓프로그램 예제 (0) | 2013.05.09 |
Comments