public static void main(String[] args) {
// 注意点1:定义引用必须放在大括号外面,因为如果放在try中,作用域就被约束在try中了
FileWriter fw = null;
try {
fw = new FileWriter("f:\\demo.txt");
fw.write("abcd");
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
// 注意点2:如果初始化未成功,fw为空,无法调用close()方法
if (fw != null)
fw.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
|
|