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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  1. <div class="blockcode"><blockquote>import java.io.*;
  2. public class IOLX2 {
  3.         public static void main(String[] ages)throws IOException       
  4.         {
  5.                 copy_2();
  6.         }
  7.         public static void copy_2()
  8.         {       
  9.                 FileReader fr = null;
  10.                 FileWriter fw = null;
  11.                 try
  12.                 {       
  13.                         fw = new FileWriter("D:\\abcddddddde2.txt");
  14.                         fr = new FileReader ("IOLX.java");
  15.                         char[] buff = new char[1024];
  16.                         int len=0;
  17.                         while((len=fr.read(buff))!=-1)
  18.                         {
  19.                                 fw.write(buff,0,len);
  20.                         }
  21.                 }
  22.                 catch(IOException e){throw new RuntimeException("读写失败");}
  23.                 finally
  24.                 {       
  25.                         if(fw!=null)
  26.                         {
  27.                         try
  28.                         {
  29.                                 fw.close();
  30.                         }
  31.                        
  32.                         catch(IOException e){throw new RuntimeException("路径不正确");}}
  33.                         if(fr!=null)
  34.                         {
  35.                                 try
  36.                                 {
  37.                                         fr.close();
  38.                                 }
  39.                        
  40.                                 catch(IOException e)
  41.                                 {throw new RuntimeException("没有这个文件");}
  42.                         }}
  43.         }

  44. }
  45. /*这个是在EditPlus 3中的代码*/
复制代码

import java.io.*;
public class IOLX3 {
        public static void main(String[] ages)throws IOException       
        {
                copy_2();
        }
        public static void copy_2()
        {       
                FileReader fr = null;
                FileWriter fw = null;
                try
                {       
                        fw = new FileWriter("D:\\abcddddddde2.txt");
                        fr = new FileReader ("IOLX.java");
                        char[] buff = new char[1024];
                        int len=0;
                        while((len=fr.read(buff))!=-1)
                        {
                                fw.write(buff,0,len);
                        }
                }
                catch(IOException e){throw new RuntimeException("读写失败");}
                finally
                {       
                        if(fw!=null)
                        {
                        try
                        {
                                fw.close();
                        }
                       
                        catch(IOException e){throw new RuntimeException("路径不正确");}}
                        if(fr!=null)
                        {
                                try
                                {
                                        fr.close();
                                }
                       
                                catch(IOException e)
                                {throw new RuntimeException("没有这个文件");}
                        }}
        }

}
/*这个是在MyEclipse中的*/

我发现一个比较严重的问题 在MyEclipse 中写的代码和在EditPlus 3中写的代码不一样 我在EditPlus 3中能运行粘贴复制到MyEclipse中就运行不了 这是为何
而且路径是相同的

QQ图片20140429225602.jpg (167.03 KB, 下载次数: 27)

这个是文件路径

这个是文件路径

4 个回复

倒序浏览
这么可以这么好、、、
回复 使用道具 举报
是不是命名空间的问题?
没用过MyEclipse
回复 使用道具 举报
我也遇到过这种问题,有些代码写出来明明没有问题,但是在Eclipse中就是不能运行,然后粘贴到EditPlus 3中就可以了...尤其是死锁,死锁程序在Eclipse中竟然不能锁住,然后EditPlus 3里面就可以!
回复 使用道具 举报
fei_xiong 发表于 2014-4-30 10:08
我也遇到过这种问题,有些代码写出来明明没有问题,但是在Eclipse中就是不能运行,然后粘贴到EditPlus 3中 ...

我现在也遇到这个问题了,但是刚好相反,在Eclipse上可以,在editplus上编译没问题,但是运行却提示找不到主函数
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马