遍历map集合

遍历map集合
for (Map.Entry<String, Object> entry : processVariables.entrySet()) {
System.out.println(entry.getKey() + "--->" + entry.getValue());
}

原文地址:https://www.cnblogs.com/ggqzz/p/8421747.html