解析Android中的JSON字符串時遇到問題。字符串本身看起來很好,至少它看起來像我想要返回的東西。但是我試圖解析它時崩潰了。任何人都能看到爲什麼謝謝!解析Android中的JSON字符串時出錯
static InputStream is = null;
static JSONObject jObj = null;
static String json = "";
public JSONObject makeHttpRequest(String url, List<NameValuePair> params) {
// Making HTTP request
try {
// defaultHttpClient
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(url);
if (params != null) {
httpPost.setEntity(new UrlEncodedFormEntity(params));
}
HttpResponse httpResponse = httpClient.execute(httpPost);
HttpEntity httpEntity = httpResponse.getEntity();
is = httpEntity.getContent();
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
try {
BufferedReader reader = new BufferedReader(new InputStreamReader(
is, "iso-8859-1"), 8);
StringBuilder sb = new StringBuilder();
String line = null;
while ((line = reader.readLine()) != null) {
sb.append(line + "n");
}
is.close();
json = sb.toString();
Log.e("JSON", json);
} catch (Exception e) {
Log.e("Buffer Error", "Error converting result " + e.toString());
}
// try parse the string to a JSON object
try {
System.err.println("start try3"); //<--fine here
System.err.println(json); //<--json string looks good
jObj = new JSONObject(json);
System.err.println("done try3"); //<--never outputs
} catch (JSONException e) {
Log.e("JSON Parser", "Error parsing data " + e.toString());
}
// return JSON String
return jObj;
}
堆棧跟蹤:
08-05 15:28:00.665:E/JSON解析器(20009):錯誤解析數據 org.json.JSONException:值 [{ 「ID」 : 「3」, 「bool_gets_sms」: 「0」, 「picture_url」: 「無」, 「電子郵件」: 「[email protected]」, 「細胞」: 「12345」, 「名」: 「海瑟」}, { 「ID」: 「7」, 「bool_gets_sms」: 「0」, 「picture_url」: 「無」, 「電子郵件」: 「[email protected]」, 「細胞」: 「12335」, 「名」:」艾倫 「},{」 ID 「:」 10" , 「bool_gets_sms」: 「0」, 「picture_url」: 「無」, 「電子郵件」: 「[email protected]」, 「細胞」: 「12345」,」命名 「:」 珍妮 「},{」 ID 「:」 11" , 「bool_gets_sms」: 「0」, 「picture_url」: 「無」, 「電子郵件」: 「[email protected]」, 「細胞」:」 12345" , 「名」: 「傑夫」},{ 「ID」: 「24」,」 bool_gets_sms「:」0「,」picture_url「:」none「,」email「:」[email protected]「,」cell「:」12345「,」name「:」Rob「}] org.json類型.JSONArray無法轉換爲JSONObject
我可以更改服務器返回的內容。更改爲JSONArray的問題很多,因爲它有許多下游的後果。你能建議服務器應該返回什麼類型的格式以適應JSONObject類嗎? – Alex
@ usr55410您只需將該數組嵌套到對象中即可。你的服務器運行什麼語言? – Tonithy
php。我的php代碼中的最後一行是'echo json_encode($ array);'。如果它能夠更加無縫地融入JSONObject類,我可以靈活地改變它。 – Alex