我编写了一个java程序,它有一个json解析器来获取一些数据。我的问题是来自json解析器的值的比较。这是我的代码:
private ArrayList<HashMap<String, String>> listInfo = new ArrayList<HashMap<String, String>>();
public ArrayList<HashMap<String, String>> info() {
//Get the data
JSONObject json = JSONfunctions.getJSONfromURL(URL);
try {
//Get the elements
HashMap<Integer, String> mapValueForCompare = 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"));
int t = check(mapValueForCompare, mapInfo);
if (t == 1) {
mapInfo.put("isSame?", "yes");
} else {
mapInfo.put("isSame?", "no");
}
mapValueForCompare.put(i, e.getString("value"));
listInfo.add(mapInfo);
}
} catch (JSONException e) {
Log.e("log_tag", "Error parsing data " + e.toString());
}
return listInfo;
}
private int check(HashMap<Integer, String> mapValueForCompare, HashMap<String, String> mapInfo) {
int result = -1;
for (int i = 0; i < mapValueForCompare.size() - 1; i++) {
if (mapValueForCompare.get(i) == mapInfo.get("value")) {
result = 1;
} else {
result = 0;
}
}
return result;
}
您会看到我使用HashMap(mapValueForCompare)来收集所有值,并将每个值与新HashMap(mapInfo)的值进行比较。结果只是答案“不”!为什么这个?我哪里错了?你有更好的主意吗?我找不到任何其他东西。
答案 0 :(得分:1)
更改检查方法:
if (mapInfoTest.get(i) == mapInfo.get("value"))
要
if (mapInfoTest.get(i).equals(mapInfo.get("value")))
您可以使用地图上的containsKey
来简化代码