我将此字符串(来自网络服务)转换为像这样的JSONArray,
[
{
"lat": "-16.408545",
"lon: "-71.539105",
"type": "0",
"distance": "0.54"
},
{
"lat": "-16.4244317845",
"lon": "-71.52562186",
"type": "1",
"distance": "1.87"
},
{
"lat": "-16.4244317845",
"lon": "-71.52562186",
"type": "1",
"distance": "0.22"
}
]
我需要按距离键对其进行排序,以显示最近的第一个和最后一个。我没有尝试任何代码,因为我真的没有任何想法。我没有使用GSON库,我使用的是org.json.JSONArray
。
答案 0 :(得分:4)
首先在列表中解析数组
JSONArray sortedJsonArray = new JSONArray();
List<JSONObject> jsonList = new ArrayList<JSONObject>();
for (int i = 0; i < jsonArray.length(); i++) {
jsonList.add(jsonArray.getJSONObject(i));
}
然后使用collection.sort对新创建的列表进行排序
Collections.sort( jsonList, new Comparator<JSONObject>() {
public int compare(JSONObject a, JSONObject b) {
String valA = new String();
String valB = new String();
try {
valA = (String) a.get("distance");
valB = (String) b.get("distance");
}
catch (JSONException e) {
//do something
}
return valA.compareTo(valB);
}
});
在数组中插入已排序的值
for (int i = 0; i < jsonArray.length(); i++) {
sortedJsonArray.put(jsonList.get(i));
}
答案 1 :(得分:0)
将你的json对象解析成一个模型say array-List并使用比较器对它进行排序。
ArrayList<ClassObject> dataList = new ArrayList<String>();
JSONArray array = new JSONArray(json);
for(Object obj : jsonArray){
dataList.add(//your data model);
}
请参阅此链接以获取数组列表的排序 http://java2novice.com/java-collections-and-util/arraylist/sort-comparator/
答案 2 :(得分:0)
试试这个。它应该工作
ArrayList<JSONObject> array = new ArrayList<JSONObject>();
JSONArray jsonArray = new JSONArray();
for (int i = 0; i < jsonArray.length(); i++) {
try {
array.add(jsonArray.getJSONObject(i));
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
Collections.sort(array, new Comparator<JSONObject>() {
@Override
public int compare(JSONObject lhs, JSONObject rhs) {
// TODO Auto-generated method stub
try {
return (lhs.getDouble("distance").compareTo(rhs.getDouble("distance")));
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
return 0;
}
}
});
在此之后,您可以将已排序的ArrayList
array
转换为JSONArray
。
JSONArray jsonArray = new JSONArray(array);
String jsonArrayStr = jsonArray.toString();