码迷,mamicode.com
首页 > 编程语言 > 详细

对象内List数组为空处理成长度为0的list

时间:2019-03-26 11:53:08      阅读:292      评论:0      收藏:0      [点我收藏+]

标签:and   cti   red   collect   tty   replace   edm   indexof   type   

private static void handlerNullList(Object object) { try { Class<? extends Object> clazz = object.getClass(); Method[] declaredMethods = clazz.getDeclaredMethods(); for(Method method : declaredMethods) { String methodName = method.getName(); Type type = method.getAnnotatedReturnType().getType(); if(methodName.indexOf("get") == 0 && type instanceof ParameterizedType) { ParameterizedType pt = (ParameterizedType) type; if(pt.getRawType().equals(List.class)) { List getList = (List) method.invoke(object, null); if(getList == null) { String setMethodName = methodName.replaceFirst("g", "s"); //数组初始化(找到对应set方法,get返回值类型) Method setMethod = clazz.getDeclaredMethod(setMethodName, List.class); setMethod.invoke(object, Collections.emptyList()); } else { if(getList.size() != 0) { for(Object obj : getList) { handlerNullList(obj); } } } } } } } catch (Exception e) { throw new RuntimeException(e); } }

对象内List数组为空处理成长度为0的list

标签:and   cti   red   collect   tty   replace   edm   indexof   type   

原文地址:https://blog.51cto.com/12165865/2369109

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!