哪位能告诉我程序错在哪吗?
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文件 里面有几个简单的汉字.有哪位能给我看看吗?