作者: 扎哈_ | 来源:发表于2017-12-12 15:24 被阅读0次
    /**
     * @Title: getList
     * @Description: 将List<E>转换为List<T>
     * 例如数据类型A中的xxx字段的数据类型是String,要从List<A>中获取xxx 的 数组 List<String> 则使用此方法
     * @param fieldName 字段名称;
     * @param list 数据源
     * @param classT 字段数据类型的Class
     * @param classE 数据源的数据类型Class
     * @return
     * @throws NoSuchMethodException
     * @throws Exception
     */
    public static <T,E> List<T> getList(String fieldName, List<E> list, Class<T> classT, Class<E> classE) throws NoSuchMethodException, Exception{
    if(StringUtil.isNull(fieldName) || StringUtil.isNull(list) || StringUtil.isNull(classT) || StringUtil.isNull(classE)) {
        return null;
    }
    List<T> newList = new ArrayList<>();
    // 获取这个字段
    Field f = classE.getDeclaredField(fieldName);
    // 将私有属性设置为可以访问
    f.setAccessible(true);
    if(f.getType().getName().equals(classT.getTypeName())) {
        for(E e : list) {
        T t = classT.newInstance();
        t = (T) f.get(e);
        newList.add(t);
        }
    } 
    return newList;
    }

相关文章

网友评论