I want to list/enumerate (at runtime) in my Java program all classes that implements a given interface, and retrieve the class name. Is it possible ? How can i do ?

link|improve this question

possible duplicate of How do you find all subclasses of a given class in Java? – rsp Jan 4 at 16:18
Pick one of stackoverflow.com/questions/435890/… and stackoverflow.com/questions/3123095/… You may need to fine tune the results.. – Jayan Jan 4 at 16:21
Clear duplicate of the questions listed by @Jayan – parasietje Jan 4 at 16:39
feedback

2 Answers

up vote 1 down vote accepted

You should use java Reflection

This link offers a tutorial that cover all the thing you can do using Reflection. You can build your code starting from there

link|improve this answer
feedback

To elaborate on how to do that using reflection :

You can start off with Thread.currentThread().getContextClassLoader(). Using a package name as path, get at the resources : Enumeration<URL> resources = classLoader.getResources(path);

Then you would have to decode the filenames from the resources, and iterate over them (recursively as some might be directories). Filter the resources for .class files, instantiate the classes with Class.forName() and check the interfaces they implement.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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