下面的代码在json解析器的帮助下获取元素。我的问题是,当我找到相同的值时,我想在现有的hashmap 中添加新元素(例如“title2”)同样的价值! 我的第一个想法是在第一个循环之后创建一个新的循环(for ...)并在这里做一些动作,但这很难。我找不到有效的方法。 这有解决方案吗?有什么想法吗?
JSONObject json = JSONfunctions.getJSONfromURL(URL);
try {
//Get the elements
HashMap<Integer, String> mapCompare = new HashMap<Integer, String>();
JSONArray data = json.getJSONArray("data");
//Loop the array
for (int i = 0; i < data.length(); i++) {
HashMap<String, String> mapInfo = new HashMap<String, String>();
JSONObject e = data.getJSONObject(i);
mapInfo.put("id", e.getString("id"));
mapInfo.put("title", e.getString("title"));
mapInfo.put("value", e.getString("value"));
if (mapCompare.containsValue(e.getString("value")) {
mapInfo.put("isSame?", "yes");
} else {
mapInfo.put("isSame?", "no");
}
mapCompare.put(i, e.getString("value"));
listInfo.add(mapInfo);
}
// a new for ??? and how ???
} catch (JSONException e) {
Log.e("log_tag", "Error parsing data " + e.toString());
}
return listInfo;
}