반응형 FileNotFoundException1 Java File 존재여부 체크 자바에서 파일을 읽다가 파일 존재 여부를 체크하는 방법에 대해서 정리를 해둔다. 크게 2가지가 있다. Try Catch 문FileReader fr;try{ fr = new FileReader(path);}catch (FileNotFoundException e) { logger.debug("찾을 수 없는 파일");} 파일을 읽고 없을시 FileNotFoundException 으로 처리를 하였다. File 객체의 exists()private boolean checkFile(String filePath) { File file = new File(filePath); return file.exists(); }exists 함수를 사용하여 존재 여부를 판단할수 있다. 2022. 11. 23. 이전 1 다음 반응형