Map

code

for (Map.Entry<String, String[]> e : map.entrySet()) {

System.out.println(e.getKey() + " : " + e.getValue());

}

result

tags

---

java map loop