aspose file tools
The moose likes Java in General and the fly likes How do I set the classpath to access JARS contained within a Jar File Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "How do I set the classpath to access JARS contained within a Jar File" Watch "How do I set the classpath to access JARS contained within a Jar File" New topic
Author

How do I set the classpath to access JARS contained within a Jar File

Rob Tanner
Greenhorn

Joined: Apr 10, 2009
Posts: 3
Hi,

I am trying to build a single jar file containing two executables and the jar files they need to function (i.e., for MySQL access, to mail results, XML processing, log4j, etc). There is no default class and therefore each of the two executables are accessed by it's full package name with the CLASSPATH environment variable set to the name of the containing jar file, e.g.:



Inside the manifest, I am setting the Class-Path attribute to "lib/mail.jar lib/log4j-1.2.15.jar lib/xmlrpc-2.0.1.jar lib/xerces.jar lib/pcng-server-11.6.jar lib/commons-codec-1.3.jar lib/linfield.jar" which is their path within the jar file. The problem is that java isn't finding them. Am I doing something wrong or trying to do something that isn't supported in Java 6?

Thanks,
Rob Tanner
Jeanne Boyarsky
internet detective
Marshal

Joined: May 26, 2003
Posts: 26168
    
  66

Rob,
Java isn't designed to read nested jars. Any reason you can't unjar it and have the jars "loose"?


[Blog] [JavaRanch FAQ] [How To Ask Questions The Smart Way] [Book Promos]
Blogging on Certs: SCEA Part 1, Part 2 & 3, Core Spring 3, OCAJP, OCPJP beta, TOGAF part 1 and part 2
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: How do I set the classpath to access JARS contained within a Jar File
 
Similar Threads
PATH Vs. CLASSPATH settings
Can't read property file in log4j
Defining Ant build.xml java properties files for a run targer
RunJavaApplication As Executable Jar
Problem in setting up Classpath variable in Win ME