package cn.mldn.demo;
import java.lang.reflect.Method;
class Person {
private String name ;
public void setName(String name) {
this.name = name;
}
public String getName() {
return name;
}
}
public class TestDemo {
public static void main(String[] args) throws Exception {
String attribute = "name" ; // 明确的告诉你属性名称
String value = "MLDN" ; // 明确告诉你要设置的内容
Class<?> cls = Class.forName("cn.mldn.demo.Person") ;
Object obj = cls.newInstance() ; // 任何情况下调用类中的普通方法都必须有实例化对象
// 取得setName这个方法的实例化对象,设置方法名称和参数的类型
// setName()是方法名称,但是这个方法名称是根据给定的属性信息拼凑得来的,同时该方法需要接收一个String型的参数
Method setMethod = cls.getMethod("set" + initcap(attribute), String.class) ;
// 随后需要通过Method类对象调用指定的方法,调用方法必须有实例化对象,同时要传入一个参数。
setMethod.invoke(obj, value) ; // 相当于:Person对象.setName(value)
Method getMethod = cls.getMethod("get" + initcap(attribute)) ;
Object ret = getMethod.invoke(obj) ; // Person对象.getName()
System.out.println(ret);
}
public static String initcap(String str) {
return str.substring(0, 1).toUpperCase() + str.substring(1) ;
}
}