vonkinder on 05/05/08
Last Edited at 05/05/08 11:43am
Iterator it = mp.entrySet().iterator(); while (it.hasNext()) { Map.Entry pairs = (Map.Entry)it.next(); System.out.println(pairs.getKey() + " = " + pairs.getValue());
Report this snippet Tweet
Comment:
You need to login to post a comment.