[
{
"id": 9,
"BusNo": "KA399",
"BusRoute": "KOR-HBL",
"latitude": "74",
"longitude": "58",
"time": "12.30"
}
]
这是我收到的数据。我需要从该数据中删除大括号{}和[],“”如何做到这一点?
答案 0 :(得分:1)
您可以使用Android SDK提供的org.json
包。这很容易。有关详细信息,请参阅本教程:http://www.androidhive.info/2012/01/android-json-parsing-tutorial/
答案 1 :(得分:1)
String json = "your string";
try {
// parse
JSONArray fullJSON = new JSONArray(json);
JSONObject jsonObject = fullJSON.getJSONObject(0);
// now you can use it like this:
String busRoute = jsonObject.getString("BusRoute");
} catch (JSONException e) {
e.printStackTrace();
}