实例如下:
public class List2MapUtils {
/**
* K: key class type, V: value class type
*
* @param sourceList
* @param keyName
* key property
* @param keyClass
* key Class type
* @return
*/
public static <K, V> Map<K, V> convert2Map(List<V> sourceList, String keyName, Class<K> keyClass) {
Map<K, V> map = new HashMap<K, V>();
if (sourceList == null || sourceList.isEmpty()) {
return map;
}
for (V value : sourceList) {
BeanWrapper beanWrapper = PropertyAccessorFactory.forBeanPropertyAccess(value);
beanWrapper.setAutoGrowNestedPaths(true);
K key = keyClass.cast(beanWrapper.getPropertyValue(keyName));
if (key == null) {
continue;
}
map.put(key, value);
}
return map;
}
}以上这篇List转换成Map工具类的简单实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持PHP中文网。
更多List转换成Map工具类的简单实例相关文章请关注PHP中文网!
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号