Re: Java app
Rikard Froberg <[email protected]> Tue, 11 Jan 2005 14:29:32 +0100
| Newsgroups | gmane.comp.java.linux.general |
|---|---|
| Message-ID | <[email protected]> |
Marek Pawinski wrote: > Hi > > I am trying to install a app which uses java during the installation > process. > > I get this error : ./setup.bin > "Exception in thread "main" java.lang.NoClassDefFoundError: > com/zerog/lax/LAX" Java looks for the com.zerog.lax.LAX class, so it must be within reach for the runtime. You must have the com.zerog.lax.LAX (or the .jar file it resides in) in your CLASSPATH variable, since Java is looking for that class in the relative path com/zerog/lax/LAX. Add the path to com.zerog.lax.LAX to your CLASSPATH variable (set in your script?), and it will work. This is by the way, not a linux problem, it is the way Java works in general. hth Rikard ---------------------------------------------------------------------- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]