This topic has been archived. It cannot be replied.
-
工作学习 / 专业技术讨论 / JAVA: 如何知道一个class是被哪个classLoader (system还是web app)loading 的?
-sonican(田园);
2007-6-15
(#3745094@0)
-
sample code.public String getClassLocation(Class clazz) {
ProtectionDomain pd = clazz.getProtectionDomain();
CodeSource cs = pd.getCodeSource();
String loc = (cs == null)? "[SYSTEM CLASS]" : cs.getLocation().toString();
return loc;
}
-niceotmeetyou(牛哥,潇洒决意);
2007-6-15
{241}
(#3745281@0)
-
谢谢。如果不写code,用debug能知道吗?
-sonican(田园);
2007-6-15
(#3745857@0)