|
I install jdk1.5 , and compile the test file ,
class test
{
public static void main(String[] args)
{
System.out.println("Hello World!");
}
}
but when I run it by java test.class
An error occur :
Exception in thread "main" java.lang.NoClassDefFoundError: test/class
Help , what is wrong ??? |
|