java IOException 및 문자열 입력 예제
- OS & Program/JAVA
- 2011. 2. 8. 00:35
*** 검색어: nabiro, java, IOException, 문자열 입력
만일 아래의 소스에서 try ~ catch 를 이용하여 IOException 예외 처리를 하지 않는다면 아래와 같은 에러를 만날 수 있습니다.
--- 에러메세지 <시작> ---
Exception in thread "main" java.lang.Error: Unresolved compilation problem:
Unhandled exception type IOException
--- 에러메세지 <끝> ---
//filename: inputTest.java // import java.io.*; public class inputTest { public static void main(String[] args) { System.out.println("Start"); BufferedReader in = new BufferedReader(new InputStreamReader(System.in)); int age=0; try { System.out.print("나이="); age = Integer.parseInt(in.readLine()); }catch(IOException ie) { System.out.println("IOException occured."); System.exit(1); } System.out.println("나이:" + age); System.out.println("End"); } }
'OS & Program > JAVA' 카테고리의 다른 글
이클립스에서 PermGen space 에러나오는 경우 대처 방법 (0) | 2011.08.16 |
---|---|
ant 를 이용하여 특정한 java 파일만을 빌드하는 방법 (0) | 2011.03.09 |
WebLogic 을 사용하다 만난 기묘한 에러와 해결 방법 (0) | 2011.02.06 |
ant에서 사용하는 build.xml 파일의 encoding 지정하는 방법 (0) | 2011.01.25 |
ant 에서 copy 작업에서 디렉터리 제외 시키는 예제 (0) | 2010.12.01 |