输出流可以重复关闭而不会出错 Leave a Comment / Java / August 20, 2008 August 20, 2008 以下代码中,如果第一次out.close()不报异常,则第二次也不会报 OutputStream out= new FileOutputStream( "c:/temp/result.xls"); out.close(); out.close();