解析数据时出错org.json.JSONException:Value

时间:2014-11-11 17:31:42

标签: java android json android-json

我收到此错误:

  

解析数据时出错org.json.JSONException:Value

这是我的logcat日志:

11-11 22:47:28.930: D/my(25127): method equals POST is working
11-11 22:47:28.930: D/my(25127): HTTp client is working
11-11 22:47:28.930: D/my(25127): HTTp post is working
11-11 22:47:28.930: D/my(25127): url encoded
11-11 22:47:29.070: D/my(25127): HTTp response is working
11-11 22:47:29.070: D/my(25127): HTTp entity is working
11-11 22:47:29.070: D/my(25127): getcontent is working
11-11 22:47:29.070: D/my(25127): buffer reader crated
11-11 22:47:29.070: D/my(25127): string buffer object crated
11-11 22:47:29.070: D/my(25127): line appended
11-11 22:47:29.070: D/my(25127): inputstram closed
11-11 22:47:29.070: D/my(25127): string buffer to string conversion
11-11 22:47:29.070: E/JSON Parser(25127): Error parsing data org.json.JSONException: Value prepared of type java.lang.String cannot be converted to JSONObject

错误可以在服务器端脚本中。

纯JSON响应是:

{"success":1,"message":"account successfully created."} 

我已在浏览器中测试过它。

3 个答案:

答案 0 :(得分:3)

我自己解决了这个问题。

在后端PHP文件中,我使用了echo语句,这些语句也作为响应输出。因此,json String包含一个html标签和/或行,因此,它无法解析。

删除后端文件中的所有echo语句或相关语句。它会工作。感谢。

答案 1 :(得分:2)

你json String包含一个<br />标签,因此无法对其进行解析。

在浏览器中尝试使用url并检查结果是否为纯json。

答案 2 :(得分:-1)

在后执行方法中将字符串转换为json对象。