<h4>获取Map中的值</h4>
<%
Map<Integer,String> map=new HashMap<Integer,String>();
map.put(1, "东邪");
map.put(2, "西毒");
map.put(3, "南帝");
map.put(4, "北丐");
request.setAttribute("map", map);
%>
Map的key为String类型时,使用${map.key}或者${map[key]}可以获取值。
问题来了:
Map的key为Integer时,该如何获取值?