Вы можете просмотреть .entrySet()
из Map<String, List<String>>
, распечатать каждую клавишу и объединить значения (List<String>
) с помощью ,
Map<String, List<String>> test = new HashMap<>();
// Fill with sample data
test.put("key1", Arrays.asList("x", "y", "z"));
test.put("key2", Arrays.asList("a", "b", "c"));
// Print the contents
for (Entry<String, List<String>> e : test.entrySet()) {
System.out.println(e.getKey() + " - " + String.join(",", e.getValue()));
}
// This prints:
// key1 - x,y,z
// key2 - a,b,c