자바 예외처리
Exception
InputMismatchException
ArrayIndexOutOfBoundsExpection
NullPointerException
오류 내용을 보기 위해서는
printStackTrace() 사용
throws
예외 발생시 예외 처리를 직접하지 않고 호출한 곳으로 넘김
xMainClass004 mainClass004 = new MainClass004();
try {
mainClass004.firstMethod();
} catch (Exception e){
e.printStackTrace();
}
xxxxxxxxxx
public void firstMethod() throws Exception{
System.out.println(10/0);
}
firstMethod의 예외 발생을 mainClass 클래스의 예외처리문에서 해결한다.
입출력 기본클래스
InputStream
- FileInputStream
- DataInputStream
- BufferedInputStream
OutputStream
- FileOutputStream
- DataOutputStream
- BufferedOutputStream
댓글