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;
}

}


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM