티스토리 뷰
log파일은 단순한 파일일 뿐 특별한 의미를 지니는 확장자는 아니다.
class ExceptionEx {
public static void main(String args[]){
PrintStream ps = null;
try {
ps = new PrintStream("error.log");
System.out.println(1);
System.out.println(2);
System.out.println(3);
System.out.println(0/0);
System.out.println(4);
} catch (Exception ee) {
ee.printStackTrace(ps);
ps.println("예외메시지 : " + ee.getMessage());
}
}
}
public static void main(String args[]){
PrintStream ps = null;
try {
ps = new PrintStream("error.log");
System.out.println(1);
System.out.println(2);
System.out.println(3);
System.out.println(0/0);
System.out.println(4);
} catch (Exception ee) {
ee.printStackTrace(ps);
ps.println("예외메시지 : " + ee.getMessage());
}
}
}
error.log파일에 에러 정보가 저장된다.
참조 : 자바의 정석
'기타 > Java' 카테고리의 다른 글
[Java] hashCode 메서드 (0) | 2010.07.20 |
---|---|
[Java] 예외 메시지 log파일에 출력하기 - (2) (0) | 2010.07.19 |
[Java] 인터페이스의 장점 (0) | 2010.07.19 |
[Java] 인터페이스와 인터페이스를 이용한 다중상속 (0) | 2010.07.19 |
[Java] instanceof 연산자 (0) | 2010.07.19 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 이산수학
- 대학원
- java
- Discrete Mathematics
- android
- 자료구조
- 안드로이드
- 통계학습
- 카타르
- 운영체제
- 개발
- Reverse Engineering
- 리버스엔지니어링
- 리눅스
- 카타르 음주
- 기계학습
- operating systems
- statistical learning
- Data Structure
- 리버싱
- 데이터 과학
- 데이터 사이언스
- reversing
- Algorithms
- Machine Learning
- 알고리즘
- 자바
- linux
- 머신러닝
- Data Science
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
글 보관함