A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© yjgoss 中级黑马   /  2013-12-23 18:59  /  1449 人查看  /  4 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

import java.io.*;
class FileWriteDemo
{
public static void main(String[] args) throws IOException
{
   FileWriter fw = null;
  try
  {
   fw = new FileWriter("demo.txt");
  fw.write("abcde");
  //fw.flush();
  
   
  }
  catch (IOException e)
  {
   System.out.println(e.toString());
  }
  finally
  {
   try
   {
    fw.close();
   }
   catch (IOException e)
  {
   System.out.println(e.toString());
  }  
}
}   编译时说解析时已达到文件结尾,是怎么回事

评分

参与人数 1技术分 +1 收起 理由
乔兵 + 1

查看全部评分

4 个回复

倒序浏览
通读你的代码,我发现少了一个“}”,这就是原因。
回复 使用道具 举报
少个“}”,在关闭资源是需要判断一下是否为null,运行正常啊
回复 使用道具 举报
import java.io.FileWriter;
import java.io.IOException;

class FileWriteDemo {
        public static void main(String[] args) throws Exception {
                FileWriter fw = null;
                try {
                        fw = new FileWriter("demo.txt");
                        fw.write("abcde");

                } catch (IOException e) {
                        System.out.println(e.toString());
                } finally {
                        if (fw != null) {             //在关闭资源是需要判断一下是否为null

                                try {
                                        fw.close();
                                        throw new IOException("空指针");
                                } catch (IOException e) {
                                        System.out.println(e.toString());
                                }
                        }
                }
        }
}

少个“}”,在关闭资源是需要判断一下是否为null,运行正常啊

评分

参与人数 1技术分 +1 收起 理由
乔兵 + 1

查看全部评分

回复 使用道具 举报
try。。catch。。finally语句块中的finally总会执行的
FileWriter fw = null;
                try {
                        fw = new FileWriter("demo.txt");
                        fw.write("abcde");

                }
在上述语句中如果 fw = new FileWriter("demo.txt");找不到就会抛出异常,同时fw=null
异常处理完后,会进入finally语句块,执行关闭操作时由于fw=null,所以会报空指针异常,故需要
进行非空判断。

评分

参与人数 1技术分 +1 收起 理由
乔兵 + 1

查看全部评分

回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马