反思与私人本土方法

时间:2011-06-04 01:12:55

标签: java reflection

我正在使用反射从扩展类中动态调用某些方法。不幸的是,其中一个方法被声明为私有本机,并且一旦我进行调用...我收到以下异常:

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"

有解决方法吗?

1 个答案:

答案 0 :(得分:6)

你在调用它之前调用了setAccessible(true)吗?