Hi, I have a problem to read a Jar from another JAR. What I am doing is I have an applet which is read from the ARICHIVE TAG in the HTML page. The applet in turns read from another JAR. ***** How do I read from another jar. ****** URGENT thanks, ram.
You can include the classpath along with jar file name in the manifest file of the jar file. For example, If x.jar and y.jar is used by Main.jar. While generating Main.jar include in the manifest file a classpath that includes both x.jar and y.jar. Class-Path: x.jar y.jar hope this might help you. -chakri