比如我想获取java.lang.Shutdown.exit方法。
但是Shutdown不是public类。
getMethod被阻止了,报错NoSuchMethodException
使用getDeclaredMethods循环后获取exit方法后invoke报错
java.lang.IllegalAccessException: Class XXX can not access a member of class java.lang.Shutdown with modifiers "static"
at sun.reflect.Reflection.ensureMemberAccess(65)
求解= =
但是Shutdown不是public类。
getMethod被阻止了,报错NoSuchMethodException
使用getDeclaredMethods循环后获取exit方法后invoke报错
java.lang.IllegalAccessException: Class XXX can not access a member of class java.lang.Shutdown with modifiers "static"
at sun.reflect.Reflection.ensureMemberAccess(65)
求解= =