0
我有陣列(JSONArray對象)與值提取數據等如何在地圖<字符串,整數>從JSONArray
[["one",1],["two",2],["three",3]...]
如何提取這對地圖? 我可以從數組中獲取單個JSONObject,但是如何從該數組中提取?
我有陣列(JSONArray對象)與值提取數據等如何在地圖<字符串,整數>從JSONArray
[["one",1],["two",2],["three",3]...]
如何提取這對地圖? 我可以從數組中獲取單個JSONObject,但是如何從該數組中提取?
您可以使用類似:
myMap.put(myJsonObject.getString(keyOfStringValueInJson), myJsonObject.getInt(keyOfIntValueInJson));
試試這個Refer
try {
JSONObject jobj = (JSONObject) jArr.get(0);
int data = jobj.getInt("one");
} catch (JSONException e) {}