jsonarray to list code example
Example 1: jsonarray to list java
JSONArray data = new JSONArray();
List<JSONObject> list = data.stream().map(o -> (JSONObject) o).collect(Collectors.toList());
Example 2: jsonarray to List in java
List<Employee> list = mapper.readValue(jsonString,
TypeFactory.defaultInstance().constructCollectionType(List.class,
Employee.class));
Example 3: how to convert a list of json to list of array
dataArray = [{"Value":10,"ValuePourcent":2},{"Value":20,"ValuePourcent":3},{"Value":51,"ValuePourcent":1}]
newFormat = dataArray.map(function(e){
return [e["Value"], e["ValuePourcent"]]
});