Getting value of public static final field/property of a class in Java via reflection
问题 Say I have a class: public class R { public static final int _1st = 0x334455; } How can I get the value of the \"_1st\" via reflection? 回答1: First retrieve the field property of the class, then you can retrieve the value. If you know the type you can use one of the get methods with null (for static fields only, in fact with a static field the argument passed to the get method is ignored entirely). Otherwise you can use getType and write an appropriate switch as below: Field f = R.class