LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Programming (https://www.linuxquestions.org/questions/programming-9/)
-   -   javac (https://www.linuxquestions.org/questions/programming-9/javac-239245/)

zaicheke 10-05-2004 10:08 PM

javac
 
I can't run apps compiled with javac.

Sample Program tha will not compile:

public class foo
{
public static void main(String[] args)
{
System.out.println("Hello World");
}
}

#javac foo.java
(compiles)
#java foo.class
Exception in thread "main" java.lang.NoClassDefFoundError: foo/class

I appoligize a head of time if this is very obvious it' 11 0' clock and my projects due tomorrow.

Stranger 10-05-2004 10:24 PM

//#java foo.class

#java foo

zaicheke 10-05-2004 10:46 PM

wow thanks a lot. My brain shuts down at 11.


All times are GMT -5. The time now is 03:53 AM.