我正在尝试将以下 json 字符串转换为JSONObject
android。但它抛出JSONException
。在过去的几个小时里,我一直在挖掘我的想法。请帮忙。
JSON字符串:
parseExchangeRate({"query":
{"count":1,"created":"2012-09-07T18:49:32Z","lang":"en-US","results":
{"row":{"rate":"55.395","name":"USD to INR"}}}});
例外:
Value <jsonobject>parseExchangeRate( of type java.lang.String cannot be converted to JSONObject
代码 :
String result = convertStreamToString(instream);
Log.d(TAG, result); //this outputs the above stated string
JSONObject json = new JSONObject(result); // this line thows exception
提前致谢。