首页 > 编程语言 > 详细

java中Map的key包含下划线转驼峰

时间:2021-07-14 19:37:54      阅读:73      评论:0      收藏:0      [点我收藏+]

本章代码是把Map中的key包含下划线的转成驼峰

直接上代码:

public static Map<String, Object> replaceHump(Map<String, Object> oldMap) {
        Map<String, Object> newObjectMap = new HashMap<String, Object>();
        Set<Map.Entry<String, Object>> entries = oldMap.entrySet();
        Iterator<Map.Entry<String, Object>> iterator = entries.iterator();
        while (iterator.hasNext()) {
            Map.Entry<String, Object> next = iterator.next();
            String key = next.getKey();
            if (StringUtils.contains(key, "_")) {
                Object value = oldMap.get(key);
                String newKey = Util.toCamelCase(key);
                newObjectMap.put(newKey, value);
                iterator.remove();
            }
        }
        for (String newStrKey : newObjectMap.keySet()) {
            oldMap.put(newStrKey, newObjectMap.get(newStrKey));
        }
        return newObjectMap;
    }

 

java中Map的key包含下划线转驼峰

原文:https://www.cnblogs.com/osmoba/p/15012042.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!