私はGoogleのカスタム検索エンジンを使用して特定のクエリformat.for JSONで結果を取得しています、JSONの結果は、重複キーを持っているので、それがJSONException生成:重複キー「ニックネーム」など。解決JSONException重複キー
を私はJAVAを使用しています。
String str=//contains the query result in json format
JSONObject ob=new JSONObject(str) produces the exception
この例外を解決する方法はありますか。ここ
は、JSON応答である:
{
"kind": "customsearch#result",
"title": "The World Factbook: India - CIA - The World Factbook",
"htmlTitle": "The World Factbook: \u003cb\u003eIndia\u003c/b\u003e -",
"link": "https://www.cia.gov/library/publications/the-world-factbook/geos/in.html",
"displayLink": "www.cia.gov",
"snippet": "Jan 20, 2011 ... Features a map and brief descriptions of geography",
"htmlSnippet": "Jan 20, 2011 \u003",
"cacheid": "0n2U45w_dvkJ",
"pagemap": {
"metatags": [
{
"il.secur.classif": "UNCLASSIFIED",
"il.title": "(U) CIA The World Factbook",
"il.summary": "CIA - The World Factbook",
"il.cutdate": "20040101",
"il.secur.classif": "UNCLASSIFIED",
"il.title": "(U) CIA The World Factbook",
"il.cutdate": "20040101",
"il.secur.classif": "UNCLASSIFIED",
"il.pubdate": "20040101",
"il.postdate": "20040501",
"il.cutdate": "20040101"
}
]
}
}
ここil.secur.classifが複数回
'il.secur.classif'、' il.title'、 'il.cutdate'は繰り返される。 JSONは間違っています! – Nishant