Problem with running java program
Hey again!
I missed out some information in last posting.. here is the full description
I have just installed 1.5.0_06 and have set paths and what otherwise is necessary to run the java programs. I was testing the install and run a standard HelloWorld.java program
I got the following error:
Exception in thread main java.lang.NoClassDefFoundError: HelloWorld
what is wrong...
Here is the entire HelloWorld.java
public class HelloWorld
{
public HelloWorld()
{
System.out.println("Hello World");
}
public static void main(String[] args)
{
HelloWorld hw = new HelloWorld();
}
}
I have checked that the path is correct too..
Hopefully someone can help me!
Anders

