请大家帮助!谢谢
Exception in thread "main" java.lang.NoClassDefFoundError:Ellsworth 是怎么回事(Ellsworth是类名和文件名) 在运行Class时遇到了这个问题,请大家帮我解决一下,谢谢原程序:
public class Ellsworth {
public static void main(String[] arguments) {
String line1 = "The advancement of the arts, from year\n";
String line2 = "to year, taxes our credulity, and seems\n";
String line3 = "to presage the arrival of that period\n";
String line4 = "when human improvement must end.";
String quote = line1 + line2 + line3 + line4;
String speaker = "Henry Ellsworth";
String title = "U.S. Commissioner of Patents";
String from = "1843 Annual Report of the Patent Office";
System.out.println('\u0022' + quote + '\u0022');
System.out.println("\t" + speaker);
System.out.println("\t" + title);
System.out.println("\t" + from);
}
}