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.

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???

share|improve this question
11  
Isn't the idea of private that you can't call it from outside? – PriestVallon Jul 1 '12 at 13:16
Yes, it's possible with reflection, but the point of private is to make it harder to call methods from the outside. Maybe it shouldn't be private? – Louis Wasserman Jul 1 '12 at 13:18
@robert it's in the same program (module) – Hamed Rajabi Jul 1 '12 at 13:21
@HamedRajabi: you mean the class that call the private method and your Dummy class is in the same package? If that's the case, you may want to use package-private (omitting the modifier). – Genzer Jul 1 '12 at 13:29
@PriestVallon Yes I know I'm not supposed to do this in a real program, I was just wondering!!! – Hamed Rajabi Jul 1 '12 at 13:30

3 Answers

up vote 7 down vote accepted

use setAccessible(true) on your Method object before invoking it.

class Dummy{
    private void foo(){
        System.out.println("hello foo()");
    }
}
class Test{
    public static void main(String[] args) throws Exception {
        Dummy d=new Dummy();
        Method m=Dummy.class.getDeclaredMethod("foo");
        //m.invoke(d);//exception java.lang.IllegalAccessException
        m.setAccessible(true);//Abracadabra 
        m.invoke(d);//now its ok
    }
}
share|improve this answer
getMethod also throws an Exception!!! – Hamed Rajabi Jul 1 '12 at 13:18
because getMethod only returns public method, you need getDeclaredMethod – Pshemo Jul 1 '12 at 13:23
you're right, thanks! – Hamed Rajabi Jul 1 '12 at 13:24
you are welcome – Pshemo Jul 1 '12 at 13:25

First you gotta get the class, which is pretty straight forward, then get the method by name using getDeclaredMethod then you need to set the method as accessible by setAccessible method on the Method object.

    Class<?> clazz = Class.forName("test.Dummy");

    Method m = clazz.getDeclaredMethod("sayHello");

    m.setAccessible(true);

    m.invoke(new Dummy());
share|improve this answer
method = object.getClass().getDeclaredMethod(methodName);
method.setAccessible(true);
method.invoke(object);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.