IT/안드로이드

안드로이드 스튜디오 error: unreported exception UnsupportedEncodingException; must be caught or declared to be thrown

조원태 2017. 1. 11. 02:29
반응형


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



error: unreported exception UnsupportedEncodingException;


안드로이드도 자바기반으로 프로그램 합니다.

위와 같은 에러가 발생할 경우 exception 처리를 해주면 되는데요

아래와 같이 try{} catch{}를 이용해서 catch  안에 exception 에러에 나와 있는 예외처리를 해주면 해결 됩니다.

try {
//코딩 로직 넣기

//코딩 로직 넣기

//코딩 로직 넣기

//코딩 로직 넣기

//코딩 로직 넣기

//코딩 로직 넣기
}catch(UnsupportedEncodingException e){
e.printStackTrace();
}




이번 프로젝트 하나를 하는데 왜 이리 에러가 많이 나오는지.. 과연 성공적으로 어플을 만들수 있을지.. 궁금하네요


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

반응형