Re: java.lang.ClassNotFoundException; offtopic



That error means the java runtime cannot find a class called "myapp"..
You might not have installed the application correctly.
The file the java runtime is looking for is called "myapp.class".
If you know where that file is installed ( find . -name myapp.class -print ), you can
help the java runtime find it by giving its location in the CLASSPATH variable.
assuming bash, try something like "export
CLASSPATH=$CLASSPATH:~/directory/containing/the/file"
then try running your app again.

Good luck,
Henri


"jim M." wrote:

Hi,
I was wondered if anyone in here would know about this.
i just installed an app on my linux box and i get this error
by trying to execute it:
java.lang.ClassNotFoundException: myapp
         at.java.lang.Class.forName(Class.java:native)
         at.java.lang.Class.forName(Class.java:52)

any clues?.

J
_____________________________________________________________________________________
Get more from the Web.  FREE MSN Explorer download : http://explorer.msn.com

_______________________________________________
gtk-app-devel-list mailing list
gtk-app-devel-list gnome org
http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list





[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]