/*
*
* IO 流的异常处理
* try catch finally
*
* 细节:
* 1,保证流对象变量,作用域足够
* 2,catch 里面,怎么 处理异常
* 输出异常的信息,目的是看 到底 哪里 出了问题
* 停下程序,重新尝试
* 3,如果流对象建立失败,需要关闭资源吗
* new 对象的时候,失败了,没有占用系统资源
* 释放资源的时候,判断流对象是不是 null
* 变量不是null,对象建立成功,需要关闭资源
*/
public class FileOutputStreamDemo3 {
public static void main(String[] args) {
//try 外面声明变量,try 里面建立对象
FileOutputStream fos = null;
try {
fos = new FileOutputStream("d:\\a.txt");
fos.write(100);
} catch (IOException ex) {
//要看到自己的问题出在哪里。
ex.printStackTrace();
System.out.println(ex.getMessage());
throw new RuntimeException("文件写入失败,请重试!");
} finally {
try {
if (fos != null)
fos.close();
} catch (IOException ex) {
throw new RuntimeException("文件关闭失败,请重试!");
}
}
}
}