본문 바로가기
  • think normal
새로워지기/서른의 생활코딩

ex26) java_oop

by 청춘만화 2012. 2. 24.




//예외 처리

//이 프로그램은 컴파일러에 의해 에러가 발생된다.
//즉 컴파일러는 a.txt 파일이 없을 경우에 발생하는 예외의
//처리를 요구한다
 
/*
import java.io.*;

class IOExceptionError {
public static void main(String args[]) {
FileReader file = new FileReader("a.txt");
// 만일 a.txt 파일이 없다면?
int i;
while((i = file.read()) != -1) {
System.out.print((char)i);
}
file.close();
}
}**/




/*
import java.io.*;

class IOExceptionError {
public static void main(String args[]) {
try{
FileReader file = new FileReader("a.txt");
// 만일 a.txt 파일이 없다면?
}
int i;
while((i = file.read()) != -1) {
System.out.print((char)i);
}
file.close();
}
}
**/


/*
import java.io.*;

class IOExceptionError {
public static void main(String args[]) {
try{
FileReader file = new FileReader("a.txt");//IOException
// 만일 a.txt 파일이 없다면?
int i;
while((i = file.read()) != -1) {//IOException
System.out.print((char)i);
}
file.close();//IOException
}catch (Exception e) {
// TODO: handle exception !!!
System.out.println("모든 오류처리");
}
}
}//Exception:오류처리를 위한,.

**/




/*
import java.io.*;

class IOExceptionError {
public static void main(String args[]) {
try{
FileReader file = new FileReader("a.txt");//FileNotFoundException
// 만일 a.txt 파일이 없다면?
int i;
while((i = file.read()) != -1) {//IOException
System.out.print((char)i);
}
file.close();//IOException
}catch (Exception e) {
// TODO: handle exception !!!
System.out.println("모든 오류처리");
}catch (FileNotFoundException e) {
// TODO: handle exception
System.out.println("해당파일없음");
}catch (IOException e) {
// TODO: handle exception
System.out.println("입출력오류");
}
}
}//Exception:오류처리를 위한,.
**/




/*
// 여러 catch code block을 사용하기위해서는 !!! -> 상속의 역순으로 작성해야한다!
import java.io.*;

class IOExceptionError {
public static void main(String args[]) {
try{
FileReader file = new FileReader("a.txt");   // Exception 객체 생성 ->FileNotFoundException
// 만일 a.txt 파일이 없다면?
int i;
while((i = file.read()) != -1) {             // IOException
System.out.print((char)i);
}
file.close();//IOException
}catch (FileNotFoundException e) {
// TODO: handle exception
System.out.println("해당파일이없음");        // -> 여기로와서 수행하고 프로그램 종료!!!!
}catch (IOException e) {
// TODO: handle exception
System.out.println("입출력오류");
}catch (Exception e) {                        
// TODO: handle exception !!!
System.out.println("모든 오류처리");
}
}
}//Exception:오류처리를 위한,.
**/



/*
// 만약 1번이 아닌 2번의 오류인 경우 2번으로 바로 실행.
// 단, 이때 file.close();가 실행되지않고 ->1번의 파일이 오픈된다. 
import java.io.*;

class IOExceptionError {
public static void main(String args[]) {
try{
FileReader file = new FileReader("a.txt");   // Exception 객체 생성 ->FileNotFoundException
// 만일 a.txt 파일이 없다면?
int i;
while((i = file.read()) != -1) {             // IOException
System.out.print((char)i);
}
file.close();//IOException
}catch (FileNotFoundException e) {
// TODO: handle exception
System.out.println("해당파일이없음");        // -> 여기로와서 수행하고 프로그램 종료!!!!
}catch (IOException e) {
// TODO: handle exception
System.out.println("입출력오류");
}catch (Exception e) {                        
// TODO: handle exception !!!
System.out.println("모든 오류처리");
}finally{
System.out.println("오류발생 유무와 관계없이 무조건 수행");
try{file.close();} catch (IOException e) {}
}
}
}//Exception:오류처리를 위한,.
**/





/*
import java.io.*;

class IOExceptionError {
public static void main(String args[]) {
FileReader file=null; //지역변수니까 초기화
try{
file = new FileReader("a.txt");   
// 만일 a.txt 파일이 없다면?
int i;
while((i = file.read()) != -1) {             // IOException
System.out.print((char)i);
}
}catch (FileNotFoundException e) {
// TODO: handle exception
System.out.println("해당파일이없음");        // -> 여기로와서 수행하고 프로그램 종료!!!!
}catch (IOException e) {
// TODO: handle exception
System.out.println("입출력오류");
}catch (Exception e) {                        
// TODO: handle exception !!!
System.out.println("모든 오류처리");
}finally{
System.out.println("오류발생 유무와 관계없이 무조건 수행");
try{file.close();} catch (IOException e) {}
}
}
}//IOException수행후 ->nullpointException 체크
**/






import java.io.*;

class IOExceptionError {
public static void main(String args[]) {
FileReader file=null; //지역변수니까 초기화
try{
file = new FileReader("a.txt");   
// 만일 a.txt 파일이 없다면?
int i;
while((i = file.read()) != -1) {             // IOException
System.out.print((char)i);
}
}catch (FileNotFoundException e) {
// TODO: handle exception
System.out.println("해당파일이없음");        // -> 여기로와서 수행하고 프로그램 종료!!!!
}catch (IOException e) {
// TODO: handle exception
System.out.println("입출력오류");
}catch (Exception e) {                        
// TODO: handle exception !!!
System.out.println("모든 오류처리");
}finally{
System.out.println("오류발생 유무와 관계없이 무조건 수행");
try{file.close();} catch (Exception e) {}
}
}
}//Exception:오류처리를 위한,.






'새로워지기 > 서른의 생활코딩' 카테고리의 다른 글

ex28) java_oop  (0) 2012.02.24
ex27) java_oop  (0) 2012.02.24
ex25) java_oop  (0) 2012.02.23
ex24) java_oop  (0) 2012.02.23
ex23) java_oop  (0) 2012.02.23

댓글