I have a string with the name of a class, is there a way (writing in Java) to use that string when creating a new instance of that class, to do something like this:
object obj = new dataInString.
So the dataInString is parsed from the string.
|
|
||||
|
|
|
Do you mean something like
And then, call
|
||||
|
|
|
Assuming that the class has a no-args constructor, then the following should do the trick
If you need to create the object using a different constructor, then you will need to do something like this:
There are a number of checked exceptions that need to be handled in either case ... |
|||||||
|
|
You can use reflection. |
|||||||
|
|
Use reflections to instantiate objects. A simple class.forName("com.blah.blah") should be a good starting point to look for more information on reflections. |
|||
|
|