Android(java) 개발 코드 리뷰 팁 하나
울 회사의 어떤분이 정리한 자료를 참조하여 요약 정리 ========================================================= Step #1 -------------- FileInputStream fin = null; try { fin = new FileInputStream("testfile"); fin.read()... fin.close(); // 뭐가 문제? } catch(IOException e) { e.printStackTrace(); } ========================================================= Step #2 -------------- FileInputStream fin = null; try { fin = new FileInputStream("testfile"); fin.read()... } catch(IOException e) { e.printStackTrace(); }finally { fin.close(); // finally를 통해 어떤 상황에서도 호출 보장 } ========================================================= Step #3 -------------- FileInputStream fin1 = null, fin2 = null; try { fin1 = new FileInputStream("testfile"); fin1.read()... ...