Is there a way to create an instance of a particular class given the class name (dynamic) and pass parameters to it's constructor.

Something like:

Object object = createInstance("mypackage.MyClass","MyAttributeValue");

MyAttributeValue is the an argument to the constructor of MyClass.

link|improve this question

50% accept rate
feedback

4 Answers

up vote 3 down vote accepted

Yes, something like:

Class<?> clazz = Class.forName(className);
Constructor<?> ctor = clazz.getConstructor(String.class);
Object object = ctor.newInstance(new Object[] { ctorArgument });

That will only work for a single string parameter of course, but you can modify it pretty easily.

link|improve this answer
1  
newInstance() is a varargs method (just as GetConstructor()), there's no need for explicit Object-array creation. – Joachim Sauer May 23 '11 at 8:28
1  
@Joachim: I know it's varargs, but as it can get tricky when you have an Object[] argument, I prefer to create the array explicitly in this case. – Jon Skeet May 23 '11 at 8:32
I see, that makes sense. – Joachim Sauer May 23 '11 at 8:33
feedback

You can use reflections

return Class.forName(className).getConstructor(String.class).newInstance(arg);
link|improve this answer
feedback

You can use Class.forName() to get a Class object of the desired class.

Then use getConstructor() to find the desired Constructor object.

Finally, call newInstance() on that object to get your new instance.

Class<?> c = Class.forName("mypackage.MyClass");
Constructor<?> cons = c.getConstructor(String.class);
Object object = cons.newInstance("MyAttributeValue");
link|improve this answer
feedback

You want to be using java.lang.reflect.Constructor.newInstance(Object...)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.