[강의 정리] Java 예외 - try-with-resource

Jeong Woosi·2022년 1월 8일
0

생활코딩 JAVA 예외

목록 보기
6/7
import java.io.FileWriter;
import java.io.IOException;

public class TryWithResource {
	public static void main(String[] args) {
		
		// try with resource statements
		try (FileWriter f = new FileWriter("Data.txt")) {
			f.write("Hello"); 
	} catch(IOException e){
		e.printStackTrace();
	}
  }
}
profile
Let's start to Coding

0개의 댓글