[java/spring] try - catch - finally 보기좋게 작성하는 예제 또는 좋은 질문과 답변들
2022. 7. 10. 20:32
몰아 넣기
스텍오버플로우에서 발견한 예제이다. Java io ugly try-finally block Is there a not so ugly way of treat the close() exception to close both streams then: InputStream in = new FileInputStream(inputFileName); OutputStream out = new FileOutputStream(outputFil... stackoverflow.com 아래와 같이 질문자는 이 구조를 이쁘게 바꾸고 싶었던 것이다. InputStream in = new FileInputStream(inputFileName); OutputStream out = new FileOutputStream(outputFil..