博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java method Exception throw with return instance.
阅读量:5058 次
发布时间:2019-06-12

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

Work by is licensed under a .

 

1. We will get an error if write the getInstance method like below, cause the StaticEnvLib() throw a exception but there is no try- catch to catch it during the return new method.

 
  
   
public
 
static
 StaticEnvLib getInstance()
     {
         
return
 
new
 StaticEnvLib(); 
     }
public
 StaticEnvLib() 
throws
 IOException {     
     
        String filename 
=
 
"
H:\\Darwin.ini
"
;
        BufferedReader reader 
=
 
new
 BufferedReader(
new
 InputStreamReader(     
                
new
 FileInputStream(filename), 
"
UTF-8
"
));     
        read(reader);     
        reader.close();     
    }   

2. Modify the StaticEnvLib to like below.

public StaticEnvLib()  {     

     
        String filename = "H:\\Darwin.ini";
        BufferedReader reader 
= new BufferedReader(new InputStreamReader(     
                
new FileInputStream(filename), "UTF-8"));     
        read(reader);     
        reader.close();     
    } 

Work by is licensed under a .

转载于:https://www.cnblogs.com/zencorn/archive/2011/04/07/2007498.html

你可能感兴趣的文章
linux调度器系列
查看>>
mysqladmin
查看>>
解决 No Entity Framework provider found for the ADO.NET provider
查看>>
SVN服务器搭建和使用(三)(转载)
查看>>
Android 自定义View (三) 圆环交替 等待效果
查看>>
设置虚拟机虚拟机中fedora上网配置-bridge连接方式(图解)
查看>>
HEVC播放器出炉,迅雷看看支持H.265
查看>>
[置顶] Android仿人人客户端(v5.7.1)——人人授权访问界面
查看>>
Eclipse 调试的时候Tomcat报错启动不了
查看>>
【安卓5】高级控件——拖动条SeekBar
查看>>
ES6内置方法find 和 filter的区别在哪
查看>>
Android入门之文件系统操作(二)文件操作相关指令
查看>>
Android实现 ScrollView + ListView无滚动条滚动
查看>>
java学习笔记之String类
查看>>
UVA 11082 Matrix Decompressing 矩阵解压(最大流,经典)
查看>>
jdk从1.8降到jdk1.7失败
查看>>
一些关于IO流的问题
查看>>
mongo备份操作
查看>>
8 -- 深入使用Spring -- 3...1 Resource实现类InputStreamResource、ByteArrayResource
查看>>
硬件笔记之Thinkpad T470P更换2K屏幕
查看>>