vote up 3 vote down star
2

I need to enumerate all classes in a package and add them to a List. The non-dynamic version for a single class goes like this:

List allClasses = new ArrayList();
allClasses.add(String.class);

How can I do this dynamically to add all classes in a package and all its subpackages?


Update: Having read the early answers, it's absolutely true that I'm trying to solve another secondary problem, so let me state it. And I know this is possible since other tools do it. See new question here.

Update: Reading this again, I can see how it's being misread. I'm looking to enumerate all of MY PROJECT'S classes from the file system after compilation.

flag

33% accept rate
Why do you need to do this? Pardon me for asking, but it sounds like you might be asking for help in a secondary problem--which might not be the best way to attack your primary problem. – mmyers Oct 6 '08 at 23:42

7 Answers

vote up 6 vote down check

It isn't possible to use reflection to query a Package for it's Classes (or even its subpackages). http://forums.sun.com/thread.jspa?threadID=341935&start=0&tstart=0 contains a very good discussion about why this is problematic, as well as a handful of solutions to your problem.

link|flag
vote up 2 vote down

I'm afraid you'll have to manually scan the classpath and the other places where java searches for classes (e.g., the ext directory or the boot classpath). Since java uses lazy loading of classes, it may not even know about additional classes in your packages that haven't been loaded yet. Also check the notion of "sealed" packages.

link|flag
vote up 1 vote down

What are you trying to accomplish? Maybe you can use the Service Provider Interface to solve your problem.

link|flag
vote up 1 vote down

It's funny that this question comes up every once in a while. The problem is that this keyword would have been more appropriately named "namespace". The Java package does not delineate a concrete container that holds all the classes in the package at any one time. It simply defines a token that classes can use to declare that they are a member of that package. You'd have to search through the entire classpath (as another reply indicated) to determine all the classes in a package.

link|flag
vote up 0 vote down

You cannot. Why? Because Java classes are loaded dynamically from the class path.

There is no such thing as "the complete set of classes in a package". At any time, you or any other application could create new files in the classpath and then load them.

link|flag
vote up 1 vote down

I figured out how to do this. Here's the procedure:

  1. Start with a class in the root package, and get the folder it's in from the class loader
  2. Recursively enumerate all .class files in this folder
  3. Convert the file names to fully qualified class names
  4. Use Class.forName() to get the classes

There are a few nasty tricks here that make me a bit uneasy, but it works - for example:

  1. Converting path names to package names using string manipulation
  2. Hard-coding the root package name to enable stripping away the path prefix

Too bad that stackoverflow doesn't allow me to accept my own answer...

link|flag
vote up 0 vote down

Look at what java.net.URLClassLoader is doing. It never enumerates classes, it just tries to find classes when asked for one. If you want to enumerate the classes, then you will need to get the classpath, split it into directories and jar files. Scan the directories (and their subdirectories) and jar files for files with the name *.class.

It may be worth looking at open source projects which seem to do the enumeration you want (like Eclipse) for inspiration.

link|flag

Your Answer

Get an OpenID
or

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