如何在JSP中遍历HashMap?如何循环通过HashMap在JSP里?<%
HashMap<String, String> countries = MainUtils.getCountries(l);%><select name="country">
<%
// Here I need to loop through countries.
%></select>
2 回答
茅侃侃
TA贡献1842条经验 获得超21个赞
countries.keySet()
countries.entrySet()
countries.values()
添加回答
举报
0/150
提交
取消