码迷,mamicode.com
首页 > 其他好文 > 详细

Map key大小写转换

时间:2020-06-30 17:44:42      阅读:243      评论:0      收藏:0      [点我收藏+]

标签:org   转换   string   class   res   result   大小   ||   try   

`
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大小写转换

标签:org   转换   string   class   res   result   大小   ||   try   

原文地址:https://www.cnblogs.com/caichaoxiang919/p/13214674.html

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