Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

4 Answers

up vote 28 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.

share|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

You can use reflections

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

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");
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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