for (Map.Entry<String, String> entry : yourHashMap.entrySet()) { 	System.out.println(entry.getKey() + " = " + entry.getValue()); }

Read more of this post