> In my project iam using some jar files.
> I created a jar file of my project and included the
> supporting jar files also.
> But iam getting an exception class not found even i
> included the supporting jar files.
Do you mean you put jar files inside a jar file? If that is what you mean, Java does not directly support jars inside jars. In theory, you could write your own classloader and find jars inside jars.
Hi, I'm working on the same problem and have across a class called JarClassLoader, which can be downloaded from here: http://java.sun.com/docs/books/tutorial/deployment/jar/ex5/JarClassLoader.java. It's supposed to be able to load classes from within JAR files. I haven't tried it yet, but I seems to me that it could help you out.