I am running an executable jar and wish to find a list of classes WITHIN the jar so that I can decide at run-time which to run. It's possible that I don't know the name of the jar file so cannot unzip it
|
|
|
|
|
|
|
You can not enumerate classes from a package of jar using Reflection API. This is also made clear in the related questions how-can-i-enumerate-all-classes-in-a-package and can-i-list-the-resources-in-a-given-package. I once wrote a tool that lists all classes found in a certain classpath. It's too long to paste here, but here is the general approach:
|
||
|
|
|
|
I am not sure if there is a way to list all classes visible to the current classloader. Lacking that, you could a) try to find out the name of the jar file from the classpath, and then look at its contents. or b) supposing that you have a candidate list of classes you are looking for, try each of them with Class.forName(). |
||
|
|
|
you can use a simple program to get a list of all the class files from jar and dump it in a property file on runtime and then in your program you can load req. class as and when req.; without using reflections. |
||
|
|
|
|
You can get the actual classpath from the classloader. this must include the jar file, otherwise the program wouldn't run. Look throug the classpath URLs to find a URL that ends with ".jar" and contains something that is never changing in the name of you jar file (preferably after the last "/"). After that you open it as a regular jar (or zip) file and read the contents. There are several methods available for obtaining the classpath. None of them works in every context and with every setup, so you must try them one by one until you find one that works in all the situations you need it to work. Also, sometimes you might need to tweak the runtime context, like (often needed) substituting maven surefire-plugin's classloading mechanism to one of optional (non-default) ones. Obtaining the classpath 1: from system property:
Obtaining the classpath 2: from classloader (with maven warning):
Obtaining the classpath 3: from current thread context: This is similar to method 2, except the first line of the method should read like this:
Good luck! |
||
|
|
|
|
I would use a bytecode inspector library like ASM. This ClassVisitor can be used to look for the main method:
Note that you might want to alter the code to confirm that classes are public, etc. This sample app uses the above class on a command-line-specified JAR:
You may also want to look at the "java.class.path" system property.
It is possible to use reflection to obtain similar results, but that approach may have some unfortunate side-effects - like causing static initializers to be run, or keeping unused classes in memory (they will probably stay loaded until their ClassLoader is garbage collected). |
||
|
|
