1. 程式人生 > >json對象轉換

json對象轉換

arr leo tostring modules ring getjson ... jsonarray ()

String modules =...; //json格式的String對象//String對象轉換為JSON格式數組JSONArray moduleArr=JSONObject.parseArray(modules);for(int i=0;i<moduleArr.size();i++){//獲取數組中一個json對象JSONObject moduleObj=moduleArr.getJSONObject(i);//獲取json對象的一個屬性String attrConditions=moduleObj.getString("attrConditions")//如果屬性又是一個json數組,則獲取後循環處理JSONArray specific=moduleObj.getJSONArray("specific");JSONObject inputJson = new JSONObject();//json對象轉換為json格式的String對象inputJson.toString();//string轉換為json對象JSONObject json = JSONObject.parseObject(inputJson);

json對象轉換