标准的 FileOutputStream输出异常处理代码: FileOutputStreamfos = null; try{ //fos = new FileOutputStream("z:\\fos4.txt"); fos= new FileOutputStream("fos4.txt"); fos.write("java".getBytes()); }catch (FileNotFoundException e) { e.printStackTrace(); }catch (IOException e) { e.printStackTrace(); }finally { //如果fos不是null,才需要close() if(fos != null) { //为了保证close()一定会执行,就放到这里了 try{ fos.close(); }catch (IOException e) { e.printStackTrace(); } } }
|