How to get fully qualified name for a class with just the class name
I want to get the fully qualified name of the class at runtime. The only piece of information which I have is the class name.
I want to create a runtime instance of a class with the class name [Just the class name].
Is there is any way to achieve this using ClassLoader?
Could anyone suggest me an idea?
Cheers,
Vinn.

