Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to write a method that will get a private field in a class using reflection.

Here's my class (simplified for this example):

public class SomeClass {
    private int myField;

    public SomeClass() {
        myField = 42;
    }

    public static Object getInstanceField(Object instance, String fieldName) throws Throwable {
        Field field = instance.getClass().getDeclaredField(fieldName);
        return field.get(instance);
    }
}

So say I do this:

SomeClass c = new SomeClass();
Object val = SomeClass.getInstanceField(c, "myField");

I'm getting an IllegalAccessException because myField is private. Is there a way to get/set private variables using reflection? (I've done it in C#, but this is the first time I've tried it in Java). If you're wondering why there is the need to do such madness :), it's because sometimes during unit testing it's handy to set private variables to bogus values for failure testing, etc.

Thanks.

share|improve this question
1  

3 Answers

up vote 19 down vote accepted

Figured it out. Need

field.setAccessible(true);
share|improve this answer
2  
bear in mind that this won't work if there is PermissionManager – Bozho Nov 20 '09 at 17:28
This can improve the performance marginally even if the member is otherwise accessible (as it turns the checks off) – Peter Lawrey Nov 20 '09 at 22:46
+1 this just saved me some frustration :) – Erin Drummond Dec 23 '12 at 1:44

Or this resource:

http://tutorials.jenkov.com/java-reflection/private-fields-and-methods.html

share|improve this answer
Please inline a summary of the resource to make your answer better on its own. – Thorbjørn Ravn Andersen Apr 19 at 16:09

A good resource is the Java Almanac (now named exampledepot):

http://www.exampledepot.com/egs/java.lang.reflect/SetAccessible.html

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.