I looked up the syntax and searched the api but am still confused about the process. I also searched Stackoverflow. What is the proper way to load a class and create an obj
Assuming the class has no-arg constructor, the simplest way would be -
Object newObject = Class.forName(strFullyQualifiedClassName).newInstance();
Reference - java.lang.Class