[오늘의 에러] error : unreported exception IOException; must be caught or declared to be thrown

ssook·2021년 7월 24일
0

오늘의 에러

목록 보기
11/18
post-thumbnail

백준 문제를 자바로 풀다가 위와 같은 에러가 떴다!👀
Scanner의 경우 속도가 느려 BufferedReader를 이용하려고 했는데 왜 떴는지 보아하니...

✅ 에러 이름

error : unreported exception IOException; must be caught or declared to be thrown

✅ 에러 원인

BufferedReader나 BufferedWriter를 사용할 때에는 IO 예외처리를 해줘야 한다. 버퍼를 사용하기 때문인 것으로 보인다.

✅ 에러 해결 법

아래와 같이 메소드에 예외처리를 해주면 된다.

public static void main(String[] args) throws IOException {
}
profile
개발자에서, IT Business 담당자로. BrSE 업무를 수행하고 있습니다.

0개의 댓글