how to print by value in a map java code example
Example 1: print map java
map.forEach((key, value) -> System.out.println(key + ":" + value));
Example 2: print only values in map
System.out.println(Arrays.toString(map.entrySet().toArray()));
map.forEach((key, value) -> System.out.println(key + ":" + value));
System.out.println(Arrays.toString(map.entrySet().toArray()));