本帖最后由 西门吹风 于 2014-6-19 21:44 编辑
毕老师的源码,看视频可以编译通过,我编译时报如下错误,把IOException改成Exception可以编译通过,求解?
- /*
- IO异常的处理方式。
- */
- import java.io.*;
- class FileWriterDemo2
- {
- public static void main(String[] args)
- {
- FileWriter fw = null;
- try
- {
- fw = new FileWriter("demo.txt");
- fw.write("abcdefg");
- }
- catch (IOException e)
- {
- System.out.println("catch:"+e.toString());
- }
- finally
- {
- try
- {
- if(fw!=null)
- fw.close();
- }
- catch (IOException e)
- {
- System.out.println(e.toString());
- }
-
- }
- }
- }
复制代码
|
|