Please let me know Is there any equivalent syntax for C# Type.GetType() in java.
Type.GetType()
And equivalent syntax of Activator.CreateInstance() in jav
Activator.CreateInstance()
You might achieve something like using Java reflection
Class c - object.getClass(); object.getClass().getConstructors()[0].newInstance(initargs);