11

我有一个包含子属性的对象,它也有子属性等等。

我基本上需要找到检索对象上特定字段的值的最佳方法,因为它是作为字符串的完整层次路径。

例如,如果对象具有字段 company (Object),字段 client (Object) 具有字段 id (String),则此路径将表示为company.client.id。因此,给定我试图获取对象值的字段的路径,我将如何去做呢?

干杯。

4

3 回答 3

24

您可以使用Apache Commons BeanUtils PropertyUtilsBean

使用示例:

PropertyUtilsBean pub = new PropertyUtilsBean();
Object property = pub.getProperty(yourObject, "company.client.id");
于 2017-02-03T07:30:52.137 回答
3

请在下面找到Fieldhelper带有getFieldValue方法的类。它应该允许您通过拆分字符串然后getFieldValue递归应用,将结果对象作为下一步的输入来快速解决您的问题。

package com.bitplan.resthelper;
import java.lang.reflect.Field;

/**
 * Reflection help
 * @author wf
 *
 */
public class FieldHelper {

    /**
     * get a Field including superclasses
     * 
     * @param c
     * @param fieldName
     * @return
     */
    public Field getField(Class<?> c, String fieldName) {
        Field result = null;
        try {
            result = c.getDeclaredField(fieldName);
        } catch (NoSuchFieldException nsfe) {
            Class<?> sc = c.getSuperclass();
            result = getField(sc, fieldName);
        }
        return result;
    }

    /**
     * set a field Value by name
     * 
     * @param fieldName
     * @param Value
     * @throws Exception
     */
    public void setFieldValue(Object target,String fieldName, Object value) throws Exception {
        Class<? extends Object> c = target.getClass();
        Field field = getField(c, fieldName);
        field.setAccessible(true);
        // beware of ...
        // http://docs.oracle.com/javase/tutorial/reflect/member/fieldTrouble.html
        field.set(this, value);
    }

    /**
     * get a field Value by name
     * 
     * @param fieldName
     * @return
     * @throws Exception
     */
    public Object getFieldValue(Object target,String fieldName) throws Exception {
        Class<? extends Object> c = target.getClass();
        Field field = getField(c, fieldName);
        field.setAccessible(true);
        Object result = field.get(target);
        return result;
    }

}
于 2012-10-21T15:38:19.413 回答
2

您需要先拆分您的字符串以获取单个fieldNames. 然后对于每个字段名称,获取所需的信息。您将不得不遍历您的 fieldNames 数组。

你可以试试下面的代码。虽然我没有使用过Recursion,但它会工作: -

public static void main(String[] args) throws Exception {

    String str = "company.client.id";
    String[] fieldNames = str.split("\\.");

    Field field;

    // Demo I have taken as first class that contains `company`
    Class<?> targetClass = Demo.class;  
    Object obj = new Demo();

    for (String fieldName: fieldNames) {

        field =  getFieldByName(targetClass, fieldName);    
        targetClass = field.getType();

        obj = getFieldValue(obj, field);            
        System.out.println(field + " : " + obj);

    }

}

public static Object getFieldValue(Object obj, Field field) throws Exception {
    field.setAccessible(true);
    return field.get(obj);
}

public static Field getFieldByName(Class<?> targetClass, String fieldName) 
                                                        throws Exception {
    return targetClass.getDeclaredField(fieldName);
}
于 2012-10-21T15:57:20.490 回答