Map迭代

for (Iterator it = paraMap.entrySet().iterator(); it.hasNext();) {
      Map.Entry e = (Map.Entry) it.next();
      System.out.println(”key: ” + e.getKey());
      System.out.println(”value: ” + e.getValue());
     }

paraMap 是一个Map

你可能感兴趣的:(map)