Hi everyone.
I am doing a little application for executing classes dynamically. I'm already able to
test it by loading one class at the time to the classpath at runtime, but now I have to do it by loading all those classes from a JAR.
I have my .class files on a .jar, which is successfully loaded to the classpath at runtime, so I know the classes are there somewhere. Now what I have to do is execute given methods (user enters method names on the UI) on those classes but I don't know where to find them and if it's possible to invoke reflection on them.
Any thoughts??
Thanks in advance.
HP