- 예외처리
- 파일 클래스(스트림)
오류(error)
예외(exception)
checked Exception | Unchecked Exception |
---|---|
반드시 예외를 처리 | 명시적인 처리를 강제하지 않음 |
컴파일 단계 | 실행 단계 |
Exception의 상속 받은 하위 클래스 중 Runtime Exception을 제외한 모든 예외 | RuntimeException 하위 예외 |
Roll-back 하지 않음 | Roll - back 함 |
try {
실제 코드가 들어가는 곳으로 예외 Exception이 발생할 가능성이 있는 코드
}
catch(예외 객체타입 참조변수) {
try 블록에서 Exception이 발생하면 catch로 오게됨.
여기에 작성한 코드가 처리됨
}
finally {
try 블록에서 Exception 발생의 유무와 상관없이 무조건 실행되는 코드(옵션, 생략 가능)
}
Exception 참조변수 = new Exception("예외가 발생하면 출력될 문자열");
throw 참조변수; // ← 예외 발생!
File 참조변수 = new File(파일 주소 또는 파일 이름)
import java.io.File;
public class File1 {
public static void main(String[] args) {
try{
File file1 = new File("/Users/soyounjeong/Desktop/develop/yoon/JAVA/Day11/input1.txt");
System.out.println(file1.exists()); // 파일 존재여부
System.out.println(file1.isDirectory()); // 폴더 존재여부
System.out.println(file1.isFile()); // 파일이니?
System.out.println(file1.length()); // 파일에서 한글 바이트 3byte, 영어 특수문자 숫자는 1byte
File dir = new File("/Users/soyounjeong/Desktop/develop/yoon/JAVA/Day11/new"); // 폴더만들기
dir.mkdir();
File file2 = new File(dir,"input2.txt"); // 폴더안에 파일을 만들게 됨
file2.createNewFile();
File file3 = new File("input3.txt");
file2.renameTo(file3);
System.out.println(file3.getPath()); // input3.txt
System.out.println(file3.getAbsolutePath()); // 전체 경로 출력
System.out.println(file3.getAbsoluteFile()); // 경로가 없으면 파일 객체도 생성
System.out.println(file3.getParent()); // 생성자에 Parent 주소가 없으면 null
} catch (Exception e){
System.out.println("파일 및 폴더 생성에 실패 했습니다.");
}
}
}
import java.io.FileInputStream;
public class File2 {
public static void main(String[] args) {
byte[] arr1 = new byte[20];
byte[] arr2 = new byte[20];
try {
FileInputStream fi = new FileInputStream("input4.txt");
System.out.println((char)fi.read()); // read() : 1바이트만 읽어옴
fi.read(arr1, 0, 5); // 인덱스 0번부터 5번까지 읽음
for(byte b : arr1){
System.out.print((char)b + " ");
}
fi.read(arr2); // 빈 바이트 배열을 넣어줌
System.out.println();
for(byte b : arr2){
System.out.print((char)b + " ");
}
fi.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}
import java.io.FileInputStream;
import java.io.FileOutputStream;
public class File3 {
public static void main(String[] args) {
String input = "파일을 저장할 주소/input4.txt";
String output = "파일을 내보낼 주소/ output1.txt";
FileInputStream fis;
FileOutputStream fos;
try{
fis = new FileInputStream(input); // input 주소 입력
fos = new FileOutputStream(output);
int b;
while((b = fis.read()) != -1){ // fis을 1바이트씩 읽어와서 b에 저장 그리고 나서 -1(데이터를 못가져올때)이 아닌지 판단
fos.write(b); // fos에 write함
System.out.print((char) b + " "); // 문자로 강제 변환해서 출력
}
fis.close();
fos.close();
} catch (Exception e){
e.printStackTrace();
}
}
}
import java.io.FileReader;
public class File4 {
public static void main(String[] args) {
char[] arr = new char[40];
try {
FileReader fr = new FileReader("input1.txt");
System.out.println((char) fr.read()); // 바이트 단위가 아니라 문자단위로 읽어옴
// char의 배열 형태로 데이터를 읽어온다.
fr.read(arr);
for(char c : arr) {
System.out.print(c); // 단어 단위로 읽어온다.
}
} catch (Exception e) {
e.printStackTrace();
}
}
}
import java.io.FileWriter;
public class File5 {
public static void main(String[] args) {
String str = "Hello Java!!"; // 문자열
try {
FileWriter fw = new FileWriter("output2.txt");
fw.write(str.charAt(0)); // charAt() : 0번에 대한 인덱스를 출력해라.
fw.write(str);
fw.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}
import java.io.FileOutputStream;
import java.io.PrintWriter;
public class File7 {
public static void main(String[] args) {
String file1 = "output3.txt";
String[] arr = {"김사과", "오렌지", "반하나", "이메론"};
try{
// FileOutputStream fos = new FileOutputStream(file1);
// PrintWriter pw = new PrintWriter(new FileOutputStream(fos));
PrintWriter pw = new PrintWriter(new FileOutputStream(file1)); // PrintWriter는 다양한 분야에서 활용
for(int i = 0; i < arr.length; i++){
System.out.print(arr[i] + " ");
pw.println(arr[i]);
}
pw.close();
} catch (Exception e){
e.printStackTrace();
}
}
}
Q. 아래 data.txt를 읽어 출력과 같이 프로그램을 작성해보자.
(학점은 평균 기준이며 90점 이상은 A, 80점 이상은 B, 70점이상은 C, 60점 이상은 D, 나머지는 F)
/*
2020.06.03 과제1 풀이
*/
import java.io.FileInputStream;
import java.util.Scanner;
public class Main1 {
public static void main(String[] args) {
String file1 = "data.txt";
Scanner sc;
try{
sc = new Scanner(new FileInputStream(file1));
while(sc.hasNextLine()){
String str = sc.nextLine(); // 김사과, 90, 80, 100
// arr[0] = "김사과"
// arr[1] = "90"
// arr[2] = "80"
// arr[3] = "100"
String[] arr = str.split(","); //,를 기준으로 자르기
System.out.println("이름 : " + arr[0]);
System.out.println("국어점수 : " + arr[1]);
System.out.println("영어점수 : " + arr[2]);
System.out.println("수학점수 : " + arr[3]);
int total = Integer.parseInt(arr[1]) + Integer.parseInt(arr[2]) + Integer.parseInt(arr[3]);
System.out.println("총점 : " + total);
int avg = total / 3;
System.out.println("평균 : " + avg);
String hakjum = "";
if(avg >= 90) hakjum = "A학점";
else if(avg >= 80) hakjum = "B학점";
else if(avg >= 70) hakjum = "C학점";
else if(avg >= 60) hakjum = "D학점";
if(avg >= 90) hakjum = "A학점";
else hakjum = "F학점";
System.out.println("학점 : "+ hakjum);
System.out.println();
}
}catch (Exception e){
e.printStackTrace();
}
}
}
아직까진 file클래스는 어려운것같다.조금더 자세하게 공부해야겠다ㅠㅠ