我有一个 web servlet,它返回一个 json,它作为 json 格式的字符串存储在我的 bb 移动应用程序中。
现在我想解析字符串以从中提取值......使用
JSONObject jsobject = new JSONObject(jsonString);
返回错误:
json 必须以 { 开头
我生成的 JSON 是这种格式
[
{"LASTNAME":"akre","FIRSTNAME":"swapnil"},
{"LASTNAME":"akre","FIRSTNAME":"swapnil"},
{"LASTNAME":"akre","FIRSTNAME":"swapnil"}
]
这是由 jsonlint.com 验证的正确格式....