博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
IO异常处理方式
阅读量:6819 次
发布时间:2019-06-26

本文共 414 字,大约阅读时间需要 1 分钟。

/*

 * IO异常处理方式  

*/

import java.io.*;

public class FileWriterDemo2

{

            public static void main(String[] args)

                 {   

                       FileWriter fw=null;  

                       try   

                         {    

                             fw=new FileWriter("demo.txt");    

                             fw.write("abcdefgh");

                        }  

                       catch(IOException e)  

                       {    

                          System.out.println("catch:"+e.toString());  

                        }   

                      finally  

                       {   

                            try   

                                {   

                                 if(fw!=null)     

                                 fw.close();   

                                }   

                               catch(IOException e)   

                              {    

                                  System.out.println(e.toString());   

                               }   

                      }  

             }

}

转载于:https://www.cnblogs.com/binglin/p/4487428.html

你可能感兴趣的文章
C#网络编程之---TCP协议的同步通信(二)
查看>>
thinkphp-许愿墙-3
查看>>
linux awk时间计算脚本
查看>>
CodeBlocks卸载后重装 编译c文件提示错误信息“No such file or directory”
查看>>
jQuery查找子元素与后代元素
查看>>
springboot更换日志系统
查看>>
Python中if __name__ == "__main__"是什么作用
查看>>
实验一
查看>>
【数据库_Mysql】<foreach>标签在Mysql中的使用
查看>>
Linux实战教学笔记50:Zabbix监控平台3.2.4(二)深入理解zabbix
查看>>
勇敢否定自己
查看>>
poj1548--Robots
查看>>
杭电3635--Dragon Balls(并查集)
查看>>
npm install报错Unhandled rejection RangeError: Maximum call stack size exceededill install
查看>>
使用MSMQ 远程队列
查看>>
理解OAuth 2.0
查看>>
Out Ref用法
查看>>
得到颜色的整形值
查看>>
.net winForm 实现类似qq 弹出新闻
查看>>
SSL加速和证书卸载的配置方式
查看>>