일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- AWT
- Android
- 전화걸기
- mybatis
- Spring
- HTML
- Menu
- 오버로딩
- JavaScript
- 기본
- Graphic
- 국제화
- 예외처리
- layout
- 어노테이션
- 생성자
- 에러페이지
- OGNL
- Eclips
- 메서드
- 메소드
- JSP
- 배열
- Java
- oracle
- 안드로이드
- paint
- 이클립스
- 클래스
- struts2
- Today
- Total
목록자바/예외처리 (10)
note
package com.basic;//사용자 정의 예외 class UserException extends Exception{ public UserException(String str){ super(str); } } public class ExcepTest09 { public static void main(String[] args) { try{ int a= -11; if(a
package com.basic;//예외처리 throw 사용법(예외를 강제적으로) public class ThrowEx1 { public void methodA(String[] n)throws Exception{ if(n.length>0){ //개선된 루프 (jdk5.0이상에서만 사용가능) //n은 인덱스 주소값을 모두 출력해서 s에 저장(?) for(String s : n) System.out.println(s); }else throw new Exception("배열에 요소가 없습니다1."); } public static void main(String[] args){ ThrowEx1 te = new ThrowEx1(); try{ te.methodA(args); }catch(Exception e){//1..
package com.basic; //예외처리 throws 사용법 import java.io.*; //모든 클래스를 사용하겠다는 것임(좋은 표현은 아님) public class ThrowsEx1 { private void printDate() throws NumberFormatException,IOException{ System.out.print("단 입력 :"); BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int dan = Integer.parseInt(br.readLine()); System.out.println(dan+"단"); System.out.println("---------"); for(int i=1;i
package com.basic;//예외처리 5 public class ExceptionEx5 { public static void main(String[] args) { int var =50; /*다중 catch문 사용하기 catch 블럭에 전달되는 객체의 타입을 명시할때 하위 타입은 위로 상위타입은 아래로*/ try{ //String -> int int date = Integer.parseInt(args[0]); System.out.println(var/date); System.out.println("----------"); } catch(NumberFormatException e){ System.out.println("숫자가 아닙니다."); } catch(ArrayIndexOutOfBoundsExc..
package com.basic;//예외처리 finally의 사용방법 public class ExceptionEx6 { public static void main(String[] args){ System.out.println("==예외가 발생하지 않은 경우=="); System.out.println("1"); try{ System.out.println("2"); System.out.println("3"); }catch(Exception e){ System.out.println("4"); }finally{//예외가 있던 없던 무조건 실행됨 System.out.println("5"); } System.out.println("프로그램 종료"); } } ==예외가 발생하지 않은 경우== 1 2 3 5 프로그램 ..
package com.basic;//예외처리 5 public class ExceptionEx5 { public static void main(String[] args) { int var =50; /*다중 catch문 사용하기 catch 블럭에 전달되는 객체의 타입을 명시할때 하위 타입은 위로 상위타입은 아래로*/ try{ //String -> int int date = Integer.parseInt(args[0]); System.out.println(var/date); System.out.println("----------"); } catch(NumberFormatException e){ System.out.println("숫자가 아닙니다."); } catch(ArrayIndexOutOfBoundsExc..
package com.basic;//예외 처리4 public class ExceptionEx4 { public static void main(String[] args) { System.out.println("==예외가 발생한 경우=="); System.out.println("1"); try{ System.out.println("2"); System.out.println(6/0); //예외 발생 System.out.println("3"); }catch(Exception e){ //예외가 발생하면 catch 블럭으로 이동 System.out.println("4"); } System.out.println("5"); } } ==예외가 발생한 경우== 1 2 4 5
package com.basic;//예외 처리3 public class ExceptionEx3 { public static void main(String[] args) { System.out.println("==예외가 발생하지 않고 정상수행=="); System.out.println("1"); try{ System.out.println("2"); System.out.println("3"); }catch(Exception e){ //예외가 발생하지 않으면 catch블럭은 호출되지 않음 System.out.println("4"); } System.out.println("5"); } } ==예외가 발생하지 않고 정상수행== 1 2 3 5
package com.basic;//예외처리 public class ExceptionEx2 { public static void main(String[] args) { int[] var = {10,20,30}; for(int i=0; i