当前位置: 代码迷 >> Java相关 >> 哪位能告诉我程序错在哪吗?
  详细解决方案

哪位能告诉我程序错在哪吗?

热度:288   发布时间:2007-10-06 17:22:02.0
哪位能告诉我程序错在哪吗?
import java.io.*;
public class filescopy{
public static void mani(String [] arge) throws IOException{
File inputfile=new File("F://a.txt");
File outputfile=new File("F://b.txt");
FileReader in=new FileReader(inputfile);
FileWriter out=new FileWriter(outputfile);
int c;
while((c=in.read()) !=-1)
out.write(c);
in.close();
out.close();
}
}
编译能通过  但执行的时候出现 exception in thread "main" java.lang.nosuchmethoderror: main 其中我在f盘中建了个a.txt文件  里面有几个简单的汉字.有哪位能给我看看吗?
搜索更多相关的解决方案: class  public  import  

----------------解决方案--------------------------------------------------------
以下是引用叶兵在2007-10-6 17:22:02的发言:
import java.io.*;
public class filescopy{
public static void mani(String [] arge) throws IOException{
File inputfile=new File("F://a.txt");
File outputfile=new File("F://b.txt");
FileReader in=new FileReader(inputfile);
FileWriter out=new FileWriter(outputfile);
int c;
while((c=in.read()) !=-1)
out.write(c);
in.close();
out.close();
}
}
编译能通过  但执行的时候出现 exception in thread "main" java.lang.nosuchmethoderror: main 其中我在f盘中建了个a.txt文件  里面有几个简单的汉字.有哪位能给我看看吗?


----------------解决方案--------------------------------------------------------
那样能通过编译?
----------------解决方案--------------------------------------------------------
谢谢
----------------解决方案--------------------------------------------------------
arge也行?
----------------解决方案--------------------------------------------------------
一个参数名而已,随便怎么写都可以
----------------解决方案--------------------------------------------------------
细心点好啊,建议用编译器,就不会出错啦
----------------解决方案--------------------------------------------------------

回复:(易水辰)细心点好啊,建议用编译器,就不会出...
请问仁兄:
怎么用编译器?
学了有段时间了,但是只用命令行,对用编译器完全没概念,烦请详细说下,感激了!
----------------解决方案--------------------------------------------------------
eclipse,建议下载一个myeclipse用用,哈哈
----------------解决方案--------------------------------------------------------
eclipe
----------------解决方案--------------------------------------------------------
  相关解决方案