vote up 1 vote down star

How can I access an inherited protected field from an object by reflection?

flag

The question would be better if you stated what you tried (exactly) and what happened (exactly). – Tom Hawtin - tackline Apr 9 at 18:41

4 Answers

vote up 4 vote down check

Two issues you may be having issues with - the field might not be accessible normally (private), and its not in the class you are looking at, but somewhere up the hierarchy.

Something like this would work even with those issues:

public class SomeExample {

  public static void main(String[] args) throws Exception{
    Object myObj = new SomeDerivedClass(1234);

    Class myClass = myObj.getClass();
    Field myField = getField(myClass, "value");
    myField.setAccessible(true); // required if field is not normally accessible
    System.out.println("value: " + myField.get(myObj));
  }

  private static Field getField(Class clazz, String fieldName) throws NoSuchFieldException {
    try {
      return clazz.getDeclaredField(fieldName);
    } catch (NoSuchFieldException e) {
      Class superClass = clazz.getSuperclass();
      if (superClass == null) {
        throw e;
      } else {
        return getField(superClass, fieldName);
      }
    }
  }
}

class SomeBaseClass {
  private Integer value;

  SomeBaseClass(Integer value) {
    this.value = value;
  }
}

class SomeDerivedClass extends SomeBaseClass {
  SomeDerivedClass(Integer value) {
    super(value);
  }
}
link|flag
Just change clazz.getDeclaredField("value"); to clazz.getDeclaredField(fieldName); -- just a copy/paste error I'm sure. – David Citron Apr 9 at 18:18
Fixed - thanks for catching that. – kenj0418 Apr 9 at 18:22
If there is a security manager, this would fail. You need to wrap up the call to setAccessible and getDeclaredField in a PriviledgedAction, and run it through java.security.AccessController.doPrivileged(...) – Varkhan Apr 9 at 18:32
vote up 0 vote down

You could do something like...

Class clazz = Class.forName("SuperclassObject");

Field fields[] = clazz.getDeclaredFields();

for (Field field : fields) {
    if (field.getName().equals("fieldImLookingFor")) {
        field.set...() // ... should be the type, eg. setDouble(12.34);
    }
}

You might also need to change the accessibility, as noted in Maurice's answer.

link|flag
Returns an array of Field objects reflecting all the fields declared by the class or interface represented by this Class object. It didn't go through the super classes – Moro Apr 9 at 18:06
Could you be more specific with the issue? You're saying it only obtained the fields in your subclass? Have you made sure that the Class.forName() method is being passed the name of the superclass, and that the accessibility has been modified, as Maurice suggested? – craig Apr 9 at 18:17
vote up 0 vote down

Do you perhaps mean from a different object an untrusted context with a SecurityManager set? That would break the type system, so you can't. From a trusted context, you can call setAccessible to defeat the type system. Ideally, don't use reflection.

link|flag
"Ideally, don't use reflection." Why? The OP is specifically trying to use reflection...while he doesn't say why, there are many legitimate uses for reflection (especially in test code). – David Citron Apr 9 at 18:19
Whilst there are legitimate uses of reflection, most are not. In particular if you are creeping around the legacy ability to respect Java (1.0) language access rules, you probably don't need it. – Tom Hawtin - tackline Apr 9 at 18:40
@Tom ...unless you're trying to write specific JUnit test cases without loosening access rules simply for the test case – David Citron Apr 9 at 22:30
Unit testing is "interesting". You could argue that it forces your code to be cleaner (alternatively unnecessarily general). Tests don't necessarily follow the usual rules of nice code. – Tom Hawtin - tackline Apr 9 at 23:35
yes Tom, It was test case issue – Moro Apr 15 at 15:06
vote up 2 vote down
field = myclass.getDeclaredField("myname");
field.setAccessible(true);
field.set(myinstance, newvalue);
link|flag
This may not work if there is a security manager that blocks the relevant permission. – Miguel Ping Apr 9 at 18:01
getField(String name) get the public fields only. – Moro Apr 9 at 18:02
@Moro: thanks, I corrected the code – Maurice Perry Apr 9 at 18:06
Thanx for try, but as Javadoc (and I tried it) it Returns a Field object that reflects the specified declared field of the class or interface represented by this Class object. it doesn't go through super classes. – Moro Apr 9 at 18:09
Sorry,it wasn't clear that you didn't new in which class the field was declared – Maurice Perry Apr 9 at 19:00

Your Answer

Get an OpenID
or

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