Java Map获取key和value的方法
List<Map<String,Object>> list =new ArrayList<Map<String,Object>>();
if (null != list) {
for (Map<String,Object> m : list) {
Iterator iterators=m.entrySet().iterator();
while (iterators.hasNext()) {
Entry ent=(Entry) iterators.next();
String key = (String) ent.getKey();//key值
String value = (String) ent.getValue();//value值
}
}
}
---------------------
【转载,仅作分享,侵删】
作者:小志的博客
原文:https://blog.csdn.net/li1325169021/article/details/80818367
版权声明:本文为博主原创文章,转载请附上博文链接!
|
|