2018-09-20から1日間の記事一覧

try~with~resources リソース解放されない

今更ではあるが、try~with~resources 文が便利で、ついうっかりこう書いてしまう。 File file = ....; try(PrintWriter pw = new PrintWriter(new BufferedWriter( new OutputStreamWriter( new FileOutputStream(file, file.exists()), "MS932")))){ } これ…