我正在使用反射从扩展类中动态调用某些方法。不幸的是,其中一个方法被声明为私有本机,并且一旦我进行调用...我收到以下异常:
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"
有解决方法吗?
答案 0 :(得分:6)
你在调用它之前调用了setAccessible(true)
吗?