NutzCN Logo
问答 nutzcn启动报错过多,无法进入进入debug模式
发布于 2604天前 作者 屠夫与 1646 次浏览 复制 上一个帖子 下一个帖子
标签:

protected Class<?> findClass(final String name)
throws ClassNotFoundException
{
final Class<?> result;
try {
result = AccessController.doPrivileged(
new PrivilegedExceptionAction<Class<?>>() {
public Class<?> run() throws ClassNotFoundException {
String path = name.replace('.', '/').concat(".class");
Resource res = ucp.getResource(path, false);
if (res != null) {
try {
return defineClass(name, res);
} catch (IOException e) {
throw new ClassNotFoundException(name, e);
}
} else {
return null;
}
}
}, acc);
} catch (java.security.PrivilegedActionException pae) {
throw (ClassNotFoundException) pae.getException();
}
if (result == null) {
throw new ClassNotFoundException(name);** 就是这一行,一直报错啊,心都碎了 **
}
return result;
}

3 回复

这是打断点了? 去掉断点呗. 后台不报错就没事啊

完全没打断点,难道是因为我装了反编译插件?

breakpoints view里面,把全部断点删掉

添加回复
请先登陆
回到顶部