String wat = "";
try{
JSONObject responsee = new JSONObject(result);
wat = responsee.getString("Result");
}
catch(JSONException e){
Log.e("log_tag", "Error parsing data "+e.toString());
}
結果=未值{ 「結果」: 「d」}的Android for的JSONObject
此代碼崩潰應用並拋出以下錯誤:
Error parsing data org.json.JSONException: No value for {"Result":"D"}
你能打印你的回覆嗎? – 2013-02-11 14:14:46
調試器顯示:{「Result」:「D」} – Disa 2013-02-11 14:22:31
您的代碼不符合該例外情況。例外情況表明,當你的代碼顯示你只用'getString'和'Result''時,你將字符串'{「Result」:「D」}'傳遞給某個'get'方法。所以請檢查你的代碼。 – 2013-02-11 14:25:46