EL表达式取Map中的值,非常简单${numberMap[key]}就可以,但是要注意,如果你的numberMap是这样的:
Java代码
HashMap<Integer, String> numberMap= new HashMap<Integer, String>();
numberMap.put(0, "零");
numberMap.put(1, "一");
在jsp页面中${numberMap[1]}将取不到值,因为el表达式中数字1是Long类型(好BT啊,都没加L啊),无法匹配到numberMap中的Integer 1 。明白了原理,事儿就好办了。修改numberMap:
HashMap<Long, String> map = new HashMap<Long, String>();
map.put(0L, "零");
map.put(1L, "一");
本文介绍了使用EL表达式从Map中获取值时遇到的问题及解决办法。当Map的键为Integer类型时,在JSP页面中通过EL表达式取值会失败,原因是EL表达式的数字类型默认为Long。文章给出了相应的解决方案,即确保Map的键类型为Long。
2319

被折叠的 条评论
为什么被折叠?



