我的代碼:機器人的JSONObject拋出異常
string result = "[{"lat":"b", "lon":"d", "ulica":"ulica1"}]";
jArray = new JSONArray(result);
tab =new String[jArray.length()];
json = jArray.getJSONObject(0);
tab[0]=json.getString("lat");
tab[1]=json.getString("lon");
tab[2]=json.getString("ulica");
它拋出jsonException,爲LON沒有價值。誰能幫我?
這是我的錯,而不是LON我有很多我的結果字符串...我從早上找這個拼寫錯誤....,P
你可以在異常中發佈消息嗎? – 2012-01-03 09:03:03
你得到了什麼確切的錯誤信息? – mH16 2012-01-03 09:05:53