0
我沒有太多熟悉Java。但我知道在PHP中,我們可以使用json_decode函數。 java中是否有任何特定的函數將下面的字符串解碼爲數組?轉換JSON字符串數組在Java中
[ {
"type" : "panaroma",
"image" : "http://test.com/images/aneesh/Desktop/19_september/pano-1.png",
"location" : "{{487,393},{197,235}}",
"trigger" : "{{487,393},{197,235}}",
"orientation" : "portrait",
} ]
不可與標準的Java,你必須使用一個第三方的lib如[GSON(https://code.google。 COM/p /谷歌GSON /) – A4L
你將需要給定的字符串來'JSONObject'代替'JSONArray'進行轉換,因爲當前字符串包含'JsonObject'作爲根元素,而不是'JsonArray': 的JSONObject的JSONObject =新的JSONObject( readlocationFeed); – Janty
http://stackoverflow.com/questions/1688099/converting-json-to-java/1688182#1688182 – Gangnus