1.JSONArray->JSONObject->String
JSONObject jsonObject= JSONArray.getJSONObject("test");
String str = jsonObject.getString("name");
2.String->JSONArray/JSONObject
String str=""; JSONObject jsonAuctionItem = new JSONObject(str);
JSONArray jsonArray = new JSONArray(str);
版权声明:本文为博主原创文章,未经博主允许不得转载。
时间: 2024-10-15 22:33:15