public static void eachCfg(Class Initclass,String taskType){
Field[] fields = Initclass.getDeclaredFields(); //获取属性
try {
for (Field field : fields) {
field.setAccessible(true);
if(field.getType().toString().endsWith("java.lang.String") && Modifier.isStatic(field.getModifiers())){}
if(field.get(TicketGetKeyPojo.class) == null){
String attrname = field.getName();
attrname = attrname.toLowerCase();
Object [] paras = {attrname,taskType};
//调用getDeclaredMethod方法时
//参数1:调用改类的方法名称
//参数2:参数列表1中的参数类型
//参数3:参数列表中2的参数类型
//getSimpleName 方法获得不带路径的类名称
Method method = Initclass.getDeclaredMethod("check"+Initclass.getSimpleName(),String.class,String.class);
//invoke方法
//参数1:类的实例方法
//参数2:调用上面的方法的参数值(注意顺序)
method.invoke(Initclass.newInstance(),paras);
}
}
}
} catch (Exception e) {
e.printStackTrace( );
}
}
反射java中的方法参数 java反射调用方法 参数限制
转载本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
java spring 反射调用方法 java反射调用有参数的构造
[Java]关于如何反射一个有构造参数的对象
System 构造器 构造方法