I would like to use Class.newInstance() but the class I am instantiating does not have a nullary constructor. Therefore I need to be able to pass in constructor arguments. Is there a way to do this?

link|improve this question
feedback

4 Answers

Class.getDeclaredConstructors(types list).newInstance(args list);
link|improve this answer
3  
Answer doesn't say how you pass the args, or show an example. It's just a guess. – djangofan Jul 24 '11 at 0:52
feedback

Class.getDeclaredConstructor(String.class).newInstance("HERESMYARG");

link|improve this answer
feedback

You can get other constructors with getConstructor(...).

link|improve this answer
feedback

Do not use Class.newInstance(); see this thread: Why is Class.newInstance() evil?

Like other answers say, use Constructor.newInstance() instead.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown