I have a Dummy class that has a private method called sayHello. I want to call sayHello from outside Dummy. I think it should be possible with reflection but I get an IllegalAccessException. Any ideas???
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|||
|
use
|
|||||||||
|
|
First you gotta get the class, which is pretty straight forward, then get the method by name using
|
|||
|
|
|
|||
|
|
Dummyclass is in the same package? If that's the case, you may want to usepackage-private(omitting the modifier). – Genzer Jul 1 '12 at 13:29