在DOS窗口中正常编译Test.java文件,运行时报如下错误
Exception in thread "main" java.lang.NoClassDefFoundError: Test
设置set classpath=.;后再运行就不报错了,我是切换到当前目录下运行的,为什么还要设置classpath呢
public class Test
{
public static void main(String[] args)
{
System.out.println("Hello World!");
}
} |
|