Java CLASSPATH variables trouble
I've just installed j2sdk1.4.0 in my win XP machine. Now it is compiling the program correctly (i.e. javac Demo.java) but during execution (i.e. java Demo) it is giving the following error:

    Requires Free Membership to View

    When you register, you will start receiving targeted emails from my award-winning team of editorial writers. Our goal is to keep you informed on the hottest topics and biggest challenges faced by SAP professionals today.

    Hannah Smalltree, Editorial Director

    By submitting your registration information to SearchSAP.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchSAP.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

"Exception in thread main java.lang.NoClassDefFoundError: Demo".
I've set PATH=C:j2sdk1.4.0bin and CLASSPATH=C:Jsdk2.0libjsdk.jar;C:j2sdk1.4.0libtools.jar through the environtment variable (both user as well as the Syatem variables.) Please help me.
This looks like an issue with your Java CLASSPATH variable. Make sure that, in addition to your normal Java class directories and JAR files, your classpath includes a period, ".". This tells the Java interpreter to look for Java classes in your current directory, as well as those in the standard Java development kit directories.

This was first published in July 2003