vote up 4 vote down star
1

A beginner question about reflection, I suppose:

Is it possible to find all classes or interfaces in a given package? (Quickly looking at e.g. Package, it would seem like no.)

flag

75% accept rate

4 Answers

vote up 10 vote down check

Due to the dynamic nature off class loaders, this is not possible. Class loaders are not required to tell the VM which classes it can provide, instead they are just handed requests for classes, and have to return a class or throw an exception.

However, if you write your own class loaders, or examine the classpaths and it's jars, it's possible to find this information. This will be via filesystem operations though, and not reflection. There might even be libraries that can help you do this.

If there are classes that get generated, or delivered remotely, you will not be able to discover those classes.

The normal method is instead to somewhere register the classes you need access to in a file, or reference them in a different class. Or just use convention when it comes to naming.

link|flag
The inability to query for class names has bugged me for a long time. Sure, it's hard and the performance can vary widely, and for certain classloaders the list is undefined or unbounded, but there are ways this could have been worked around. – Mr. Shiny and New Feb 6 at 14:38
vote up 4 vote down

It is not possible, since all classes in the package might not be loaded, while you always knows package of a class.

link|flag
vote up 5 vote down

You could use this method listed at http://snippets.dzone.com/posts/show/4831, using the Classloader.

link|flag
vote up 0 vote down

Maybe you could query all classes one-by-one by reflection?

link|flag
If you have all the classes, sure, but the question was: for a given package, can you find all classes :-) (And the answer: not using reflection.) – Jonik May 14 at 11:21

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.