Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下 ArrayList
ArrayList<HashMap<String, String>> list; HashMap<String, String> map;
里面有以下值:
list[0] = map.put("key_0", value_0); list[1] = map.put("key_1", value_1); list[2] = map.put("key_2", value_2);
我想解析list数组并获取特定位置的键值。
list
get()您可以通过使用方法从 ArrayList> 获取特定映射。例如,
get()
map = list.get(index);
要获取该地图的密钥,您可以执行以下操作:
String key = map.get("key");
仅供参考,这是可行的解决方案,我不知道您为什么使用 key_0、key_1、key_2 等密钥名称。