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 ?
feedback
|
|
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 | |||
|
feedback
|
|
To elaborate on how to do that using reflection : You can start off with 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 | ||||
|
feedback
|