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文件 里面有几个简单的汉字.有哪位能给我看看吗?
----------------解决方案--------------------------------------------------------
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
----------------解决方案--------------------------------------------------------