I have this JSON structure:
{"metrics":[{
        "type": "sum",
        "column": ["rsales", "nsales"]
    },
    {
        "type":"count",
        "column":["ptype", "plan"]
    }]
}
I am trying to read that JSON from Java and want to the output to be like:
str_sum="Sum" 
str_sum_array[]= {"rsales" ,"nsales"} 
str_count="count" 
str_count_array[]= {"ptype" ,"plan"} 
Here is my code so far:
JSONArray jsonArray_Metric = (JSONArray) queryType.get("metrics");
for (int i = 0; i < jsonArray_Metric.length(); i++) {
JSONObject json_Metric = jsonArray_Metric.getJSONObject(i);
Iterator<String> keys_Metrict = json_Metric.keys();
while (keys_Metrict.hasNext()) {
    String key_Metric = keys_Metrict.next();
    // plz help
  }
}
How can I complete the code to produce the desired output?
 
    