有效json字符串上的org.json.JSONObject异常

时间:2015-03-18 16:31:33

标签: java json org.json

我有以下代码:

try {
    JSONObject json = new JSONObject(data);
    ...
} catch(JSONException ex) {
    if(LOGS_ON) Log.e(TAG, "Could not save data.", ex);
}

虽然传入的json字符串非常有效,但它会引发异常。例外情况如下:

org.json.JSONException: Value {"ShopId3Digit":"ww0","ServerTime":1426695017191,"SMSTelephone":"2104851130","SendPODAgain":true,"SendLocationAgain":true,"IsHUB":false,"AllowReceiptsAndDeliveries":true} of type java.lang.String cannot be converted to JSONObject

你看到我传入的json数据有什么问题吗?

BTW这是Eclipse手表中的字符串:

"{\"ShopId3Digit\":\"ww0\",\"ServerTime\":1426695017191,\"SMSTelephone\":\"2104851130\",\"SendPODAgain\":true,\"SendLocationAgain\":true,\"IsHUB\":false,\"AllowReceiptsAndDeliveries\":true}"

2 个答案:

答案 0 :(得分:1)

这是一个有效的版本

import org.json.JSONException;
import org.json.JSONObject;

public class Test {
  public static void main(String[] args) {
    String data = "{\"ShopId3Digit\":\"ww0\",\"ServerTime\":1426695017191,\"SMSTelephone\":\"2104851130\",\"SendPODAgain\":true,\"SendLocationAgain\":true,\"IsHUB\":false,\"AllowReceiptsAndDeliveries\":true}";

    try {
      JSONObject json = new JSONObject(data);
      System.out.println("Success: json = ");
      System.out.println(json.toString(2));
    } catch(JSONException ex) {
      System.out.println("Error: " + ex);
    }
  }   
}

(使用https://github.com/douglascrockford/JSON-java处提供的最新版本)。我已经测试了这段代码,它编译并成功输出

Success: json = 
{
  "IsHUB": false,
  "SMSTelephone": "2104851130",
  "AllowReceiptsAndDeliveries": true,
  "SendPODAgain": true,
  "SendLocationAgain": true,
  "ShopId3Digit": "ww0",
  "ServerTime": 1426695017191
}

因此,错误似乎与json数据无关。

答案 1 :(得分:0)

毕竟这是我的错。我通过Newtonsoft序列化程序从.NET程序中获取数据。错误地,我正在序列化已经序列化的对象,导致只是一个字符串。 Eclipse中监视中的起始和结束引号实际上是值的一部分。

感谢godfatherofpolka为你付出的努力。