Hallo Frafu.
Class c=Object.class.getClassLoader().loadClass(str);
Java-API: "returns: the class loader that loaded the class or interface represented by this object."
Das ist also nicht das was du willst.
Dynamisches Laden von Klassen macht man ganz einfach so:
Class c = class.forName("foo.bar.MyClass");
MyClass my = (MyClass)c.newInstance();
Servus
--
flowh .
flowh .