我有一个Map<String, String> values
,它返回键值对,我希望每个值都是一个字符串。
例如输出应该是:
String a = "map value 1"
String b = "map value 2"
如何使用iterator,如果是,那么如何获取String中的每个值?
输出:
11-30 14:05:03.344 21403-21403/com.example D/getActionValue: Map Values are : {com.ibm.mce.sdk.NOTIF_SOURCE_ID=-1638692152, com.ibm.mce.sdk.NOTIF_SOURCE_PAYLOAD={"attribution":"Campaign Name Group"}, value={"hasLoyaltyId":"please enter name"}, com.ibm.mce.sdk.NOTIF_SOURCE={"subject":"Title","message":"Notification Message","notification-action":{"name":"go to screen","value":{"hasLoyaltyId":"please enter name"},"type":"gotoscreen"}}}
在第一级迭代后,我仍然没有得到值,因为它包含多个值,您可以在输出中看到
11-30 16:19:36.998 9429-9429/com.teleca.sam.engine D/getActionValue: Attribution is : Campaign Name 30
11-30 16:19:36.998 9429-9429/com.teleca.sam.engine D/getActionValue: Map Values are : {com.ibm.mce.sdk.NOTIF_SOURCE_ID=1671068670, com.ibm.mce.sdk.NOTIF_SOURCE_PAYLOAD={"attribution":"Campaign Name 30"}, value={"hasLoyaltyId":"please enter name "}, com.ibm.mce.sdk.NOTIF_SOURCE={"subject":"Title 1","message":"Notification Message 1","notification-action":{"name":"go to screen","value":{"hasLoyaltyId":"please enter name "},"type":"gotoscreen"}}}
11-30 16:19:36.999 9429-9429/com.example D/getActionValue: key : com.ibm.mce.sdk.NOTIF_SOURCE_ID
11-30 16:19:36.999 9429-9429/com.example D/getActionValue: value : + value
11-30 16:19:36.999 9429-9429/com.example D/getActionValue: key : com.ibm.mce.sdk.NOTIF_SOURCE_PAYLOAD
11-30 16:19:36.999 9429-9429/com.example D/getActionValue: value : + value
11-30 16:19:36.999 9429-9429/com.example D/getActionValue: key : value
11-30 16:19:36.999 9429-9429/com.example D/getActionValue: value : + value
11-30 16:19:36.999 9429-9429/com.example D/getActionValue: key : com.ibm.mce.sdk.NOTIF_SOURCE
11-30 16:19:36.999 9429-9429/com.example D/getActionValue: value : + value
答案 0 :(得分:3)
是的,你可以如下,
for (Map.Entry<String, Object> e : hashmap.entrySet()) {
String key = e.getKey();
Object value = e.getValue();
String a=e.getKey()+" "+e.getValue();
Log.e("Map",a);
}
答案 1 :(得分:2)
你可以迭代地图。 entrySet
状态的documentation:
返回此映射中包含的映射的Set视图。
因此,基于此,您可以在迭代器中使用它来执行您想要的操作。
Iterator it = values.entrySet().iterator();
while (it.hasNext())
{
Map.Entry pair = (Map.Entry)it.next();
System.out.println(pair.getKey() + " = " + pair.getValue());
}