Map key大小写转换
Posted caichaoxiang919
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Map key大小写转换相关的知识,希望对你有一定的参考价值。
`
public class MapUtil {
public static Map<String, Object> keyToLowerCase(Map<String, Object> orgMap) {
Map<String, Object> resultMap = new HashMap<>();
if (orgMap == null || orgMap.isEmpty()) {
return resultMap;
}
Set<Map.Entry<String,Object>> entrySet = orgMap.entrySet();
for (Map.Entry<String, Object> entry : entrySet) {
String key = entry.getKey();
Object value = entry.getValue();
resultMap.put(key.toLowerCase(), value);
}
return resultMap;
}
public static Map<String, Object> keyToUpperCase(Map<String, Object> orgMap) {
Map<String, Object> resultMap = new HashMap<>();
if (orgMap == null || orgMap.isEmpty()) {
return resultMap;
}
Set<Map.Entry<String,Object>> entrySet = orgMap.entrySet();
for (Map.Entry<String, Object> entry : entrySet) {
String key = entry.getKey();
Object value = entry.getValue();
resultMap.put(key.toUpperCase(), value);
}
return resultMap;
}
}
以上是关于Map key大小写转换的主要内容,如果未能解决你的问题,请参考以下文章
springboot中处理mybatis返回Map时key值的大小写
Amazon Elastic Map Reduce:输入片段大小是不是重要
mybatis怎么配置才能使查询出来的map key为小写的