我正在尝试为我的应用程序执行此代码:
JSONObject json = jsonParser.makeHttpRequest(url_kickit_connect,
"POST", params);
// check log cat for response
Log.d("Create Response", json.toString());
try {
int response = json.getInt(TAG_RESPONSE);
if (response == 0){
Toast.makeText(getApplicationContext(), "email " +mail , Toast.LENGTH_SHORT).show();
}
}
catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
在获取 0 作为返回值时,0 应该在这段代码中被解析为 jsonobject(上面我做了标准的 Httppost 和 Stringbuilder):
try {
jObj = new JSONObject(json);
} catch (JSONException e) {
Log.e("JSON Parser", "Error parsing data " + e.toString());
}
我从 MySQL 端获得的 JSON 值(.php):
else
{
$response = 0;
echo json_encode($response);
}
但我在 Logcat 中收到此错误:
02-26 09:24:14.920: E/JSON Parser(619): Error parsing data org.json.JSONException: Value 0 of type java.lang.Integer cannot be converted to JSONObject
如果我尝试将值或数据类型更改为字符串等。错误消息只会更改为告知的值或数据类型。我该如何解决这个问题?