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.

How to get value of the field in Runtime for Java?

EDIT:

using this construction:

    ClassPathScanningCandidateComponentProvider scanner =
 new ClassPathScanningCandidateComponentProvider(
                    false);
        for (BeanDefinition bd : scanner
        .findCandidateComponents("aspectlogging"))
                        {
            Class myTarget = null;
                try {
                        myTarget = Class.forName(bd.getBeanClassName());
                     }
                       catch (ClassNotFoundException e) {...}
                for (Field f:myTarget.getDeclaredFields()){
                        try {
                            System.out.println("FIELD: " + f.get(myTarget));
                            } catch (IllegalArgumentException e) {...} 
                              catch (IllegalAccessException e) {...}
                    } }

I've got java.lang.IllegalAccessException,
when call f.get(myTarget),
where myTarget is the instance of bean got in Runtime and f is its field.

when run in loop following:

System.out.println("FIELD: " + f);

got field names OK:

FIELD: private java.lang.String aspectlogging.TestableBean.name
FIELD: private java.lang.String aspectlogging.TestableBean.name

It's quite strange,that value can't be got.

share|improve this question

1 Answer

up vote 1 down vote accepted

arg (called obj in the Javadoc) is the instance on which to operate. In your example, the instance is bd, so use f.getInt(bd) to extract an int field and so on.

share|improve this answer
aix, see,please,my edited post, I still can't get value of field.Fields of bean where got OK,but when try get values exception thrown. – sergionni Oct 13 '11 at 21:40

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.