vote up 13 vote down star
8

Is there a way to include all the jar files within a directory in the classpath?

I'm trying java -classpath lib/*.jar:. my.package.Program and it is not able to find class files that are certainly in those jars. Do I need to add each jar file to the classpath separately?

flag

75% accept rate
1  
people are voting up the painful platform specific answer! Check out my answer. Java6 supports EXACTLY what the OP wants!!! – basszero Oct 20 '08 at 20:45

11 Answers

vote up 10 vote down check

The problem is the way the shell expands the wildcard - you want the jars to be separated by colons in the classpath specifier, but the shell is giving you spaces. If you're using Bash, you can try something like

java -classpath $( echo *.jar . | sed 's/ /:/g') my.package.Program
link|flag
The shell is probably not expanding the wildcard at all in the original example, because it doesn't treat : specially and looks for files in the lib directory that end in ".jar:.". Since there aren't any, it passes the asterisk through to java, which doesn't expand it either. – Greg Hewgill Oct 20 '08 at 19:37
Thank you, that worked for iterating through the directory, and it worked when I ran a test script. However, I received this error when trying to run it as you had: customermigration.sh[4]: sed: not found. customermigration.sh: There is no process to read data written to a pipe. – Chris Serra Oct 20 '08 at 20:03
try 'which sed' and it will show you the full path, e.g. /bin/sed. then replace 'sed' in the script with /bin/sed or the relevant path. – Leigh Caldwell Oct 20 '08 at 21:39
marked down - see basszero's post – Joel Jul 8 at 13:32
vote up 18 vote down

If you're using Java 6 (which you should be), Sun added classpath wildcards but you have to get the syntax JUST right. See Classpath. Jump down to the section, "Understanding class path wildcards" (about midway down the page)

link|flag
We're actually using Java 5 at the moment. But that is good to know for the future, thanks for the tip! – Chris Serra Oct 21 '08 at 4:25
vote up 8 vote down

We get around this problem by deploying a main jar file myapp.jar which contains a manifest (Manifest.mf) file specifying a classpath with the other required jars, which are then deployed alongside it. In this case, you only need to declare java -classpath myapp.jar when running the code.

So if you deploy the main jar into some directory, and then put the dependent jars into a lib folder beneath that, the manifest looks like:

Manifest-Version: 1.0
Implementation-Title: myapp
Implementation-Version: 1.0.1
Class-Path: lib/dep1.jar lib/dep2.jar

NB: this is platform-independent - we can use the same jars to launch on a UNIX server or on a Windows PC.

link|flag
vote up 1 vote down

You need to add them all separately. Alternatively, if you really need to just specify a directory, you can unjar everything into one dir and add that to your classpath. I don't recommend this approach however as you risk bizarre problems in classpath versioning and unmanagability.

link|flag
vote up 1 vote down

If you really need to specify all the .jar files dynamically you could use shell scripts, or Apache Ant. There's a commons project called Commons Launcher which basically lets you specify your startup script as an ant build file (if you see what I mean).

Then, you can specify something like:

<path id="base.class.path">
    <pathelement path="${resources.dir}"/>
	<fileset dir="${extensions.dir}" includes="*.jar" />
    <fileset dir="${lib.dir}" includes="*.jar"/>
</path>

In your launch build file, which will launch your application with the correct classpath.

link|flag
vote up 0 vote down

Think of a jar file as the root of a directory structure. Yes, you need to add them all separately.

link|flag
vote up 0 vote down

Just a note for us non UNIX developers. The classpath requirement is the same on Windoze and the flavors of that fruity company's OS.

Tom

link|flag
vote up 0 vote down

Just 2 links to my own posts about declaration of jar files in manifest file and how to use ANT to automatically generate the list of jars (for using in the manifest and the -jar option for example). It might help.

link|flag
vote up 0 vote down

The only way I know how is to do it individually, for example:

setenv CLASSPATH /User/username/newfolder/jarfile.jar:jarfile2.jar:jarfile3.jar:.

Hope that helps!

link|flag
vote up 0 vote down

As previously mentioned, this can be done in Java 6. However, I've found that you need to wrap the classpath in quotes. This has worked for me in both Windows and Linux.

Linux: java -classpath "lib/*.jar:." my.package.Program

Windows: java -classpath "lib*.jar:." my.package.Program

link|flag
vote up 0 vote down

Under windows this works:

java -cp "Test.jar;lib/*" my.package.MainClass

and this does not work:

java -cp "Test.jar;lib/*.jar" my.package.MainClass

notice the *.jar, so the * wildcard should be used alone.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.