Sunday, April 24, 2005

How to find out where a class is loaded from?

ClassLoader cl = aClass.getClassLoader();
while (cl != null) {
System.out.println(cl);
cl = cl.getParent();
}

try {
System.out.println(aClass.getProtectionDomain().getCodeSource().getLocation());
} catch (Exception e) {}