I want to go through every items in a dictionary in java. to clarify what I want to do, this is the C# code
Dictionary LableList = new Dict
java.util.Map is the Dictionary equvivalent and below is an example on how you can iterate through each entry
java.util.Map
for(Map.Entry e : map.entrySet()) { System.out.println(e.getKey()+": "+e.getValue()); }