Answers for "java Map of list of strings to string change to map string to string"

0

java map string to list

Map<String, List<String>> myMaps = new HashMap<String, List<String>>();
    for (DataObject item : myList) {
        if (!myMaps.containsKey(item.getKey())) {
            myMaps.put(item.getKey(), new ArrayList<String>());
        }
        myMaps.get(item.getKey()).add(item.getValue());
    }
Posted by: Guest on May-20-2020

Code answers related to "java Map of list of strings to string change to map string to string"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language