File fi = new File("file:///home/abc/Desktop/test/out/production/test/");
URL url = fi.toURI().toURL();
URL[] urls = new URL[]{url};
URLClassLoader classLoad = new URLClassLoader(urls);
Class<?> v = classLoad.loadClass("test.out.production.test.Rout");
Absolute Path of the class whose object should be created /home/abc/Desktop/test/out/production/test/Rout (Rout is the required class)
But it is giving ClassNotFound Exception.