일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 메소드
- layout
- 전화걸기
- 이클립스
- 배열
- paint
- 메서드
- HTML
- Menu
- 예외처리
- 오버로딩
- 기본
- Graphic
- AWT
- Android
- OGNL
- JSP
- 안드로이드
- 어노테이션
- JavaScript
- oracle
- Spring
- 생성자
- 국제화
- Eclips
- 에러페이지
- mybatis
- 클래스
- struts2
- Java
- Today
- Total
목록예외처리 (10)
note
dispatcher-servlet.xml error/mathException error/exception messages.validation ArithmeticOperatorController.javapackage madvirus.spring.chap06.controller; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestParam; @Controller public class Arithme..
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