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( ); } }
1. 本站所有资源来源于用户上传和网络,如有侵权请及时联系站长!
2. 分享目的仅供大家学习和交流,您必须在下载后24小时内删除!
3. 不得使用于非法商业用途,不得违反国家法律。否则后果自负!
4. 本站提供的源码、模板、插件等等其他资源,都不包含技术服务请大家谅解!
5. 如有链接无法下载、失效或广告,请联系管理员处理!
6. 本站资源售价只是赞助,收取费用仅维持本站的日常运营所需!
7. 如遇到加密压缩包,默认解压密码为"mababa.xin",如遇到无法解压的请联系管理员!
码巴巴-优质代码创造者 » java通过反射调用有参数的方法
常见问题FAQ
- 免费下载或者VIP会员专享资源能否直接商用?
- 本站所有资源版权均属于原作者所有,这里所提供资源均只能用于参考学习用,请勿直接商用。若由于商用引起版权纠纷,一切责任均由使用者承担。更多说明请参考 VIP介绍。
- 提示下载完但解压或打开不了?
- 找不到素材资源介绍文章里的示例图片?
- 一个高级程序员模板开发平台