import java.lang.reflect.Array;
import java.lang.reflect.Constructor;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
public class Reflection {
/**
* 返回某个对象的公共属性
*
* @param owner, fieldName
* @return 该属性对象
* @throws Exception
*/
public Object getProperty(Object owner, String fieldName) throws Exception {
// 首先,得到该对象的Class
Class ownerClass = owner.getClass();
// 通过Class得到类声明的属性
Field field = ownerClass.getField(fieldName);
// 通过对象得到该属性的实例,如果这个属性是非公有的,这里会报IllegalAccessException
Object property = field.get(owner);
return property;
}
/**
* 返回某个对象的静态公共属性
*
* @param className 类名
* @param fieldName 属性名
* @return 该属性对象
* @throws Exception
*/
public Object getStaticProperty(String className, String fieldName)
throws Exception {
// 得到类的Class
Class ownerClass = Class.forName(className);
// 通过Class得到类声明的属性
Field field = ownerClass.getField(fieldName);
// 因为该属性是静态的,所以直接从类的Class里取
Object property = field.get(ownerClass);
return property;
}
/**
* 执行某对象方法
*
* @param owner
* 对象
* @param methodName
* 方法名
* @param args
* 参数数组
* @return 方法返回值
* @throws Exception
*/
public Object invokeMethod(Object owner, String methodName, Object[] args)
throws Exception {
Class ownerClass = owner.getClass();
// 配置参数的Class数组,作为寻找Method的条件
Class[] argsClass = null;
if (args != null && args.length > 0) {
argsClass = new Class[args.length];
for (int i = 0, j = args.length; i < j; i++) {
argsClass[i] = args[i].getClass();
}
}
// 通过Method名和参数的Class数组得到要执行的Method
Method method = ownerClass.getMethod(methodName, argsClass);
// 执行该Method,invoke方法的参数是执行这个方法的对象,和参数数组。
//返回值是Object,也既是该方法的返回值
return method.invoke(owner, args);
}
/**
* 执行某类的静态方法
*
* @param className
* 类名
* @param methodName
* 方法名
* @param args
* 参数数组
* @return 执行方法返回的结果
* @throws Exception
*/
public Object invokeStaticMethod(String className, String methodName,
Object[] args) throws Exception {
Class ownerClass = Class.forName(className);
Class[] argsClass = null;
if (args != null && args.length > 0) {
argsClass = new Class[args.length];
for (int i = 0, j = args.length; i < j; i++) {
argsClass[i] = args[i].getClass();
}
}
Method method = ownerClass.getMethod(methodName, argsClass);
// invoke的一个参数是null,因为这是静态方法,不需要借助实例运行
return method.invoke(null, args);
}
/**
* 新建实例
*
* @param className
* 类名
* @param args
* 构造函数的参数
* @return 新建的实例
* @throws Exception
*/
public Object newInstance(String className, Object[] args) throws Exception {
Class newoneClass = Class.forName(className);
Class[] argsClass = null;
if (args != null && args.length > 0) {
argsClass = new Class[args.length];
for (int i = 0, j = args.length; i < j; i++) {
argsClass[i] = args[i].getClass();
}
}
// 产生构造函数
Constructor cons = newoneClass.getConstructor(argsClass);
// 生成实例
return cons.newInstance(args);
}
/**
* 验证对象的实例
* @param obj 实例
* @param cls 类
* @return 如果 obj 是此类的实例,则返回 true
*/
public boolean isInstance(Object obj, Class cls) {
return cls.isInstance(obj);
}
/**
* 返回某个对象数组中的某个元素
* @param array 数组
* @param index 索引
* @return 返回指定数组对象中索引组件的值
*/
public Object getByArray(Object array, int index) {
return Array.get(array,index);
}
}