- 447 名前:デフォルトの名無しさん mailto:sage [2007/03/15(木) 12:33:56 ]
- >>444
1.5 以降なら、 www.atmarkit.co.jp/bbs/phpBB/viewtopic.php?topic=36027&forum=12&start=15 の、かつのり氏の StreamUtils#close みたいなユーティリティメソッド作って、 FileInputStream file = null; BufferedReader reader = null; IOException e = null; try { file = new FileInputStream(name); reader = new BufferedReader(new InputStreamReader(file)); //.... }catch(IOException ex){ e = ex; }finally{ StreamUtils.close(e, reader, file); } みたいにするとか。 1.4までだと java.io.Closeable がないから この方法は使えないんだけどね。
|

|