反射和私有本机方法

问题描述

| 我正在使用反射来动态调用扩展类中的某些方法。不幸的是,这些方法之一被声明为私有本机,并且在我拨打电话后立即收到以下异常:
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)
吗?