HashMap 中的值为数组如何提取?
有个HashMap,其中有个键值对,键是userlist,值的话就是一个HashMap的数组,比如[{uid=1,sex=1,updatetime=,about=156}...
有个 HashMap, 其中有个键值对,键是userlist,值的话就是一个 HashMap的数组,比如 [{uid=1, sex=1, updatetime=, about=156},{uid=2, sex=1, updatetime=, about=151}] . 请问如何把里面的数组{}拿出来,或者怎么样得到里面的uid等值……
展开
1个回答
展开全部
HashMap map=new HashMap();
map.put("uid",uid);
map.put("sex",sex);
map.put("updatetime",updatetime);
map.put("about",about);
Iterator ite = map.keySet().iterator();
while(ite.hasNext()){
String key = (String)ite.next(); // key
System.out.println("-->"+key+"==>"+map.get(key));
}
map.put("uid",uid);
map.put("sex",sex);
map.put("updatetime",updatetime);
map.put("about",about);
Iterator ite = map.keySet().iterator();
while(ite.hasNext()){
String key = (String)ite.next(); // key
System.out.println("-->"+key+"==>"+map.get(key));
}
更多追问追答
追问
你好,不是这样的,
HashMap map=new HashMap();
map.put("userlist",“[{uid=1, sex=1, updatetime=, about=156},{uid=2, sex=1, updatetime=, about=151}] ”);
应该是类似与这种情况,它的值就是一个HashMap的数组……请问这样如何操作……
追答
等于添加进去的键是"userlist",值是“[{uid=1, sex=1, updatetime=, about=156},{uid=2, sex=1, updatetime=, about=151}] ”。取值的时候 Iterator ite = map.keySet().iterator();
while(ite.hasNext()){
String key = (String)ite.next(); // key
System.out.println("-->"+key+"==>"+map.get(key));
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询