The -classpath command line argument (to both java and javac) expect that you will list specific JAR files (and/or "exploded" directories containing class files). This is unlike the Windows/UNIX PATH environment variable which just lists directories containing executables.
So for example, if you want to compile com.example.Foo that depends on lib/bar.jar you might use the following incantation:
javac -classpath lib/bar.jar com/example/Foo.java
But my guess is that you are also getting a specific error message, and knowing that error message would be useful in helping you further.
-classpathunderjavacto no avail." Then your question should be "How do I make -classpath under javac work?". Do not add 3rd party Jars to the JRE (or JDK). – Andrew Thompson Apr 30 '12 at 16:22srcdirectory, because youre not compiling the jar, youre using it to compile.javafiles, which are indeed undersrcdirectory. What exactly is the missing class? are you sure it is in the jar youre using? could be a dependency of that jar – jambriz Apr 30 '12 at 16:36