I have a HashMap:
HashMap
private HashMap example = new HashMap();
Now I would lik
Assuming you have a Map, you can print it like this:
Map
for (Map.Entry entry : map.entrySet()) { System.out.println(entry.getKey()+" : "+entry.getValue()); }