1

List我有一堆存储在/中的未知类Array。如何从这些类中获取字段的值?

我应该粘贴f.get()什么?

for(Class<?> cl : ClassList){
        for(Field f : cl.getFields()){
            try {
                f.setAccessible(true);
                writeln(f.get( <WHAT TO PASTE HERE> ));
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    }
4

2 回答 2

3

就反射而言,我更喜欢依赖具有更可读 API 的框架,而不是标准的 Java 反射 API。我用过两个:

第一个是镜子。获取字段值(静态或实例)如下所示:

获取静态字段的值:

Class clazz;
Object value = new Mirror().on(clazz).get().field("fieldName");

获取实例字段的值:

Object target;
Object value = new Mirror().on(target).get().field("fieldName");

您还可以传递 java.lang.reflect.Field 而不是 fieldName 字符串。

获取静态字段的值:

Field aField;
Class clazz;
Object value = new Mirror().on(clazz).get().field(aField);

FEST-Reflect是另一个不错的库( FEST fluent Assertions真的很好,顺便说一句)。

import static org.fest.reflect.core.Reflection.*;

// Retrieves the value of the field "name"
String name = field("name").ofType(String.class).in(person).get();

// Retrieves the value of the field "powers"
List<String> powers = field("powers").ofType(new TypeRef<List<String>>() {})
                                     .in(jedi).get();

// Retrieves the value of the static field "count" in Person.class
int count = field("count").ofType(int.class).in(Person.class).get();


// Retrieves the value of the static field "commonPowers" in Jedi.class
List<String> commmonPowers = field("commonPowers")
                                    .ofType(new TypeRef<List<String>>() {})
                                    .in(Jedi.class).get();

所有示例均取自相应库的文档。

基于您提供的代码的一些快速和粗略的示例:使用 Mirror 实现您想要的(如果我理解正确的话):

for(Class<?> cl : classList){
   Mirror mirror = new Mirror().on(cl);
   for(Field f: mirror.reflectAll().fields()) {
      if(java.lang.reflect.Modifier.isStatic(f.getModifiers()) {
         writeln(mirror.get().field(f));
      }
   }
}

我假设您只想读取静态字段。对于对象列表:

for(Object obj : objectList){
   for(Field f: new Mirror().on(obj.getClass()).reflectAll().fields()) {
       writeln(new Mirror().on(obj).get().field(f));
   }
}

与 FEST-Reflect 相同:

for(Class<?> cl : classList){
    for(Field f : cl.getFields()){
      if(java.lang.reflect.Modifier.isStatic(f.getModifiers()) {
         writeln(field(f.getName()).ofType(f.getType()).in(cl).get());
      }
    }
}

和:

for(Object obj : objectList){
   for(Field f: obj.getClass().getFields()) {
      if(!java.lang.reflect.Modifier.isStatic(f.getModifiers()) { //not 100% sure if this is required
         writeln(field(f.getName()).ofType(f.getType()).in(obj).get());
      }
   }
}

请注意,如果没有实际的类实例(对象)来读取它们,则无法读取实例字段值。

我希望这有帮助。当然,这些示例可以使用一些重构。

于 2013-07-23T20:06:22.170 回答
1

您拥有的字段仅指向一个字段,而不是特定对象中的特定字段,并且您必须有一个对象才能从中获取字段值。参数必须是从中提取字段值的对象。如果对象的类型错误,IllegalArgumentException则抛出 an。所以要小心。这是一个片段来说明:

Field field = Integer.class.getDeclaredField("value"); // I think that's the field name
int val = field.get(new Integer(8)); // returns 8
int val2 = field.get("Hello"); // throws IllegalArgumentException
于 2013-07-23T19:41:12.133 回答