I have a string which specifies the name of the call. How can i call the particular class by using this string.am trying this in java. A function will return me a list of strings which are class names.now task is to make a call to a class by using this string.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You can do this using this code:
As the class name you should use the full class name including packages. But you can't call a class. You can initialize a class and then call a method of this class. http://download.oracle.com/javase/6/docs/api/java/lang/Class.html#forName(java.lang.String) |
|||||||||
|
|
|||
|
|
|
Learn reflection. By reflection you can get class by its name. |
|||||||||
|