I am currently loading Java classes using Class.forName() to load it.
Class.forName()
clazz = Class.forName(\"interfaces.MyClass\");
But now I
You have to create an instance of ClassLoader which is aware of the directory with classes. See stackoverflow questions tagged urlclassloader.