我從PHP讀取狀態JSON格式,但總是得到:java.lang.Integer中不能被轉換爲JSONObject的
org.json.JSONException: Value 43 of type java.lang.Integer cannot be converted to JSONObject
我從JSON
讀取結果的方式int strUserID;
......
strUserID = jsonObject.getInt("UserID");
而且在PHP我使用:
$user_id = mysql_insert_id();
echo $user_id;
if(!$objQuery)
{
$arr['StatusID'] = "0"; // unable to create user
}
else
{
$arr['StatusID'] = "1"; // user created successfully
$arr['UserID'] = $user_id; // passing user id to android app
}
JSON樣本的網址:
46{"StatusID":"1","UserID":46}
但在Android方面沒有得到數據轉換成JSON格式,因爲面臨着異常
可我知道我在做什麼錯誤?
可以添加你的'json'迴應? – Rustam
發佈您的** Json數據**。 – Pankaj
@Rustam檢查以上 – Sophie