RE: [Biojava-l] java.lang.NoClassDefFoundError error

2004-06-30 Thread Selmar Leeuwenburgh
Selmar Leeuwenburgh Cc: [EMAIL PROTECTED] Subject: Re: [Biojava-l] java.lang.NoClassDefFoundError error Good old classpath error would be my guess. try: cd bio-java\demos c:\j2sdk1.4.2_04\bin\java -cp . seq/TestEmbl this should give you the following error (output is from linux): [EMAIL PROTECTED] demos]

Re: [Biojava-l] java.lang.NoClassDefFoundError error

2004-06-29 Thread Francois Pepin
Good old classpath error would be my guess. try: cd bio-java\demos c:\j2sdk1.4.2_04\bin\java -cp . seq/TestEmbl this should give you the following error (output is from linux): [EMAIL PROTECTED] demos]$ java -cp . seq/TestEmbl Exception in thread "main" java.lang.NoClassDefFoundError: org/bioja

RE: [Biojava-l] java.lang.NoClassDefFoundError error

2004-06-29 Thread Gang Wu
Another problem is you have to include "c:\bio-java\demos" in your CLASSPATH and call the TestEmbl as "seq.TestEmbl" because the class package started from "c:\bio-java\demos\seq". So the command line should be like: c:\j2sdk1.4.2_04\jre\bin\java -cp CLASSPATH;c:\bio-java\demos seq.TestEmbl C:\bio

RE: [Biojava-l] java.lang.NoClassDefFoundError error

2004-06-29 Thread Gang Wu
Give C:\>c:\j2sdk1.4.2_04\jre\bin\java a try. I got the similar problem, which seems the "java" you called did not include the jar files under C:\>c:\j2sdk1.4.2_04\jre\lib\ext properly, any hint? Gang -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Selmar L