标签:style blog color get 类 name
/** * 根据类名,方法名,反射调用类的方法 * @方法名称: getResult * @描述: TODO * @param className * @param methodName * @param params * @return */ public static String getResult(String className,String methodName,Map<String,Object> params){ String result = null; try{ Object obj = Class.forName(className).newInstance(); Class clazz = obj.getClass(); Method mothod = clazz.getDeclaredMethod(methodName, Map.class); result = (String) mothod.invoke(obj, params); }catch (Exception e) { e.printStackTrace(); } return result; }
根据类名,方法名,反射调用类的方法,布布扣,bubuko.com
标签:style blog color get 类 name
原文地址:http://www.cnblogs.com/angryprogrammer/p/3798946.html