| Author |
Exception in thread "main" NoClassDefFoundError
|
ShaunRobert Williams
Greenhorn
Joined: Apr 19, 2007
Posts: 3
|
|
Hi, im trying to comple this code on a Mac running OS X 10.4. Both files are in the same dir. I do a javac *.java and then java -classpath . MainFrame I Get: Exception in thread "main" java.lang.NoClassDefFoundError: MacGUI/MacJMenuBar Any ideas? Thanks a bunch.
|
 |
Keith Lynn
Ranch Hand
Joined: Feb 07, 2005
Posts: 2341
|
|
The problem is the package statement. Try removing that or putting that source file in a directory that matches the package.
|
 |
ShaunRobert Williams
Greenhorn
Joined: Apr 19, 2007
Posts: 3
|
|
Removing the package statement didnt fix it, but moving the file to its proper directory did. Thanks Keith!
|
 |
Keith Lynn
Ranch Hand
Joined: Feb 07, 2005
Posts: 2341
|
|
Oops, sorry. If you remove the package statement in the second, you need to remove the import statement in the first.
|
 |
 |
|
|
subject: Exception in thread "main" NoClassDefFoundError
|
|
|