這裏是基本的JSON語法?
[
UserJSONImpl{
"id"=26136358,
"name"='BryanConnor',
"screenName"='thewhyaxis',
"location"='null',
"description"='TheWhyAxisisacollectionofindepthwritingaboutthevisualizationsthatdeserveyourattention.',
"isContributorsEnabled"=false,
部分我不是太熟悉JSON語法,我還沒有發現,將介紹在網絡上的來源;當我試圖分析在JSONArray每個JSONObject的我得到這樣
Expected a ',' or ']' at character 14
一個錯誤,當我輸入到jsonlint:
Parse error on line 1:
[ UserJSONImpl{
-----^
Expecting 'STRING', 'NUMBER', 'NULL', 'TRUE', 'FALSE', '{', '[', ']'
這有什麼錯我的JSON?
一切。您的代碼不會與JSON類似。請參閱http://json.org/ – Quentin
上的規範。看起來你錯過了一堆「'字符來關閉你的字符串。也許這只是代碼中的格式錯誤? –