/**
* @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;
}
网友评论