java尝试最后阻止关闭流
我想在最后的块中关闭我的流,但它抛出了一个,所以似乎我必须在我的块中嵌套另一个块才能关闭流。这是正确的方法吗?这似乎有点笨拙。IOException
try
finally
代码如下:
public void read() {
try {
r = new BufferedReader(new InputStreamReader(address.openStream()));
String inLine;
while ((inLine = r.readLine()) != null) {
System.out.println(inLine);
}
} catch (IOException readException) {
readException.printStackTrace();
} finally {
try {
if (r!=null) r.close();
} catch (Exception e){
e.printStackTrace();
}
}
}