find element in json array code example
Example 1: find Array of value in JSON
data.list.filter( record => record.name === "my Name")
Example 2: jsonarray find
JSONArray event_values = opoutput.getJSONArray("DISPLAY_VALUES");
JSONArray event_codes = opoutput.getJSONArray("VALUES");
List valueList = new ArrayList();
List displayList = new ArrayList();
for(int i=0;i