Posts by Marcelo Pedrazzani • 21 points
1 post
-
1
votes1
answer456
viewsQ: Creating a new Object, and populating its properties, using Java Reflection
Hello, I need to invoke a method via reflection, Method.invoke(Objeto, arg); Object -> Object created from Class.newInstance() Arg -> is the value I want to pass. And I know it’s a String. But…