try with resources1 Try with resources, 자원 자동 해제하기 Try with resources java 7에서 추가된 'try with resources'는 try(...) try안에서 선언된 객체들을 try가 끝나면 자동으로 자원해제 해주는 기능입니다. 아래는 텍스트파일에 문자열을 쓰는 간단한 코드입니다. 1 2 3 4 5 6 7 8 9 10 11 12 13 public static void main(String[] args) throws IOException { BufferedOutputStream bos = null; try { bos = new BufferedOutputStream(new FileOutputStream("E:/Test2/TryWithResTest.txt")); String str = "Try With Resources Testttttt"; .. 2022. 7. 1. 이전 1 다음