Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 메소드
- 생성자
- JavaScript
- OGNL
- Spring
- HTML
- 어노테이션
- Graphic
- paint
- Android
- Menu
- Java
- 전화걸기
- 에러페이지
- struts2
- 배열
- 국제화
- 클래스
- Eclips
- 예외처리
- 오버로딩
- layout
- 안드로이드
- 메서드
- oracle
- 기본
- AWT
- mybatis
- 이클립스
- JSP
Archives
- Today
- Total
목록throw (1)
note
예외처리 throw사용법
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..
자바/예외처리
2011. 12. 27. 10:38