Answers for "java convert json string to list of maps"

0

java convert json string to list of maps

Gson gson = new Gson();
Type resultType = new TypeToken<List<Map<String, Object>>>(){}.getType();
List<Map<String, Object>> result = gson.fromJson(json, resultType);
Posted by: Guest on April-05-2022

Code answers related to "java convert json string to list of maps"

Code answers related to "Javascript"

Browse Popular Code Answers by Language