我正在开发一个应用程序,我有一个JSON
响应,它看起来像这样:
{
"notifications":{
"0":{
"text":"First One",
"state":"new"
},
"1":{
"text":"Second One",
"state":"new"
},
"2":{
"text":"Third One",
"state":"new"
},
"3":{
"text":"Fourth One",
"state":"old"
},
"4":{
"text":"Fifith One",
"state":"old"
}
}
}
我正在使用Iterator
类来解析这个响应。我正在做这样的事情:
notifyList = new ArrayList<HashMap<String, String>>();
try {
JSONObject rootObj = new JSONObject(result);
JSONObject jSearchData = rootObj.getJSONObject("notifications");
Iterator<String> keys = jSearchData.keys();
while (keys.hasNext()) {
String key = keys.next();
JSONObject jNotification0 = jSearchData.optJSONObject(key);
if (jNotification0 != null) {
String text = jNotification0.getString("text");
String state = jNotification0.getString("state");
HashMap<String, String> map = new HashMap<String, String>();
map.put("text", text);
map.put("state", state);
System.out.println("Text: " + text);
System.out.println("State: " + state);
notifyList.add(map);
}
else {
}
但这给了我混乱格式的数据,它不像JSON
响应那样明智。
这是log
哪个打印出来的,全都乱七八糟的:
Text: Fourth One
State: old
Text: Third One
State: new
Text: Second One
State: new
Text: First One
State: new
Text: Fifth One
State: old
我只是使用“状态”变量并相应地对其进行排序,以便我的“新”状态排在“旧状态”之前。但是,如果我的回复中有 2-3 个新状态,这对我没有帮助。
我尝试过看起来像这样的集合代码:
Collections.sort(notifyList,
new Comparator<Map<String, String>>() {
@Override
public int compare(final Map<String, String> map1,
final Map<String, String> map2) {
int comparison = map1.get("state")
.compareToIgnoreCase(map2.get("state"));
if (comparison == 0)
return 0;
else if (comparison > 0)
return 1;
else
return -1;
}
}
);
知道如何解决这个问题我想明智地显示响应顺序吗?
任何形式的帮助将不胜感激。