Possible Duplicate:
Can you find all classes in a package using reflection?
suppose I've a package name as string:
String pkgName = "com.forat.web.servlets";
How to know the types in this package?
suppose I've a package name as string:
How to know the types in this package? |
|||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
That's not possible in full generality. If your classes are stored in a directory or JAR file, you can look at its contents, but the classloader mechanism is so flexible that the question "what classes are in this package" simply does not make sense - it's possible to write a classloader that returns a class for any classname you ask for. |
|||||
|
|
Can you provide some more details, like what kind of environment? A standalone app, a webapp in a application server. Where are the classes loaded from? JARs, separate files on a file system, a network class loader etc. There is no simple answer, simply because there is no simple definition of a package. A package can be spread over multiple jars, multiple class loaders, and in the case of network class loaders, the classes exist on another machine. Finally, do you want to just consider classes that are loaded in the VM or all classes present on the classpath? EDIT: See also this related question. |
|||
|
|
|
These two answers explain methods that should cover many practical problems: |
|||
|
|
|
f you have a .jar file that you want to get the .class files from you can use the following:
Example (NOTE: ignores exception handling)
|
|||
|
|