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 get names of various fields in a class like this :

Field[] f = MyClass.class.getDeclaredFields();
Sring str = f[0].toString();
MyClass cl = new MyClass();

Now I want to access the (public) field str from the object cl dynamically. How do I do that?

share|improve this question

3 Answers

up vote 7 down vote accepted

Use the Field.get method like this (for the 0th field):

Object x = f[0].get(cl);

To figure out which index the str field has you can do

int strIndex = 0;
while (!f[strIndex].getName().equals("str"))
    strIndex++;

Here's a full example illustrating it:

import java.lang.reflect.Field;

class MyClass {
    String f1;
    String str;
    String f2;
}

class Test {
    public static void main(String[] args) throws Exception {
        Field[] f = MyClass.class.getDeclaredFields();
        MyClass cl = new MyClass();
        cl.str = "hello world";

        int strIndex = 0;
        while (!f[strIndex].getName().equals("str"))
            strIndex++;

        System.out.println(f[strIndex].get(cl));

    }
}

Output:

hello world
share|improve this answer
But how will I get the context of object cl? – mihsathe Jun 25 '11 at 14:21
ok got it now.. – mihsathe Jun 25 '11 at 14:22
I previously thought that you meant a static method. – mihsathe Jun 25 '11 at 14:23
2  
Better yet, use MyClass.class.getDeclaredField("str"). – Dunes Jun 25 '11 at 15:48
Yup. Good point. – aioobe Jun 25 '11 at 16:11
Field f = Myclass.class.GetField("Str");
MyClass cl = new MyClass();
cl.Str = "Something";
String value = (String)f.get(cl); //value == "Something" 
share|improve this answer

Should go like this:

Field[] f = MyClass.class.getDeclaredFields();
MyClass targetObject = new MyClass();
...
Object fieldValue = f[interestingIndex].get(cl);

Mind the exceptions.

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.