如何使用反射定义动态的setter和getter?


问题内容

我从资源束中循环了一个类的字符串,字段名列表。我创建一个对象,然后使用循环,我想为该对象设置值。例如,对于对象

Foo f = new Foo();

使用参数param1,我有字符串“ param1”,并且我想以某种方式将“ set”连接起来,例如“ set” +“
param1”,然后将其应用于f实例,如下所示:

f.setparam1("value");

和吸气剂一样。我知道反思会有所帮助,但我无法做到。请帮忙。谢谢!


问题答案:

你可以做这样的事情。您可以使此代码更通用,以便将其用于循环字段:

Class aClass = f.getClass();
Class[] paramTypes = new Class[1];
paramTypes[0] = String.class; // get the actual param type

String methodName = "set" + fieldName; // fieldName String
Method m = null;
try {
    m = aClass.getMethod(methodName, paramTypes);
} catch (NoSuchMethodException nsme) {
    nsme.printStackTrace();
}

try {
    String result = (String) m.invoke(f, fieldValue); // field value
    System.out.println(result);
} catch (IllegalAccessException iae) {
    iae.printStackTrace();
} catch (InvocationTargetException ite) {
    ite.printStackTrace();
}