问题描述
|
我正在使用反射来动态
调用扩展类中的某些
方法。不幸的是,这些
方法之一被声明为私有本机,并且在我拨打电话后立即收到以下异常:
java.lang.illegalaccessexception: Class com.something.somewhere.MyThing ca
n not access a member of class com.something.somewhere.AnotherThing with modifier
s \"private native\"
有没有
解决的办法?
解决方法
您在调用方法之前在方法上调用
setAccessible(true)
吗?