FileInputStream fis = new FileInputStream("a.txt"); // 파일 읽어오기 없을시 FileNotFoundException 예외처리
Class c = Class.forName(className); 클래스 동적 할당 읽어오기 ClassNotFoundException 예외처리
FileNotFoundException, ClassNotFoundException
FileInputStream fis = null;
try {
fis = new FileInputStream("a.txt"); // 파일을 읽어들인다. // 파일이 없을수 있어서 FileNotFoundException 이 발생
} catch (FileNotFoundException e) {
System.out.println(e); // 지정된 파일을 찾을수없다고 나온다.
return; // 파일이 있으면 밑에까지 다수행 없으면 리턴 종료하고 finally 수행
} finally { // finally 은 무조건 실행된다.
'JAVA Programming' 카테고리의 다른 글
[80] I/O 입출력 스트림 정의 (0) | 2020.07.21 |
---|---|
[79] 예외처리미루기 , 사용자정의예외 , throws 미루기,throw 예외발생 (0) | 2020.07.21 |
[77] 예외와 예외처리 (0) | 2020.07.21 |
[76] 스트림 reduce 연산을 정의 (프로그래머가 직접 지정하는 연산 적용) (0) | 2020.07.21 |
[75] 스트림 - 연산을 위한 객체 filter,map,sum,count,forEach (0) | 2020.07.21 |