黑马程序员技术交流社区

标题: IO拷贝文本时的异常 [打印本页]

作者: Chaiber    时间: 2013-1-2 10:49
标题: IO拷贝文本时的异常
本帖最后由 Chaiber 于 2013-1-2 11:19 编辑

import java.io.*;

class  CopyText
{
       public static void main(String[] args)
       {
               copy_2();
       }
       public static void copy_2()
       {
              FileWriter fw = null;
              FileReader fr = null;
              try
             {
                   fw = new FileWriter("ThreadDemo_copy.txt");
                   fr = new FileReader("ThreadDemo.java");
                   char[] buf = new char[1024];
                   int len = 0;
                   while((len=fr.read(buf))!=-1);
                  {
                      fw.write(buf,0,len);
                   }
             }
             catch (IOException e)
            {
                   throw new RuntimeException("读写失败");
            }
             finally
           {
                   if (fr!=null)
                  {
                         try
                        {
                               fr.close();
                        }
                       catch (IOException e)
                       {
                       }
                  }
                  if (fw!=null)
                 {
                        try
                       {
                             fw.close();
                       }
                       catch (IOException e)
                      {
                      }
                  }
  }
}
}
命令行的异常
D:\java\day18>java CopyText
Exception in thread "main" java.lang.IndexOutOfBoundsException
        at sun.nio.cs.StreamEncoder.write(StreamEncoder.java:121)
        at java.io.OutputStreamWriter.write(OutputStreamWriter.java:207)
        at CopyText.copy_2(CopyText.java:25)
        at CopyText.main(CopyText.java:7)

文件拷贝出来了,可是里面没有东西,还有这个异常怎么解决,求解答,谢谢。


IO.JPG (51.58 KB, 下载次数: 33)

IO.JPG

作者: 小灰灰    时间: 2013-1-2 11:08
while()后面多了个分号  ~~{:soso__2152927486043015124_4:}
作者: Chaiber    时间: 2013-1-2 11:19
晕,十分感谢= =




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2