Y
yawnmoth
I'm recieving an Exception in thread "main"
java.lang.NoClassDefFoundError: Test and am not really sure why. I'm
able to compile the file - Test.java - just fine, with javac, however,
when I try to run it, with java, I can't. The contents of Test.java
are as follows:
public class Test
{
public static void main(String[] args)
{
System.out.println("Hello world");
}
}
java.lang.NoClassDefFoundError: Test and am not really sure why. I'm
able to compile the file - Test.java - just fine, with javac, however,
when I try to run it, with java, I can't. The contents of Test.java
are as follows:
public class Test
{
public static void main(String[] args)
{
System.out.println("Hello world");
}
}