如何在JSP中循环访问HashMap? [英] How to loop through a HashMap in JSP?

查看:253
本文介绍了如何在JSP中循环访问HashMap?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在JSP中循环 HashMap

  <%
HashMap< String,String> countries = MainUtils.getCountries(l);
%>

< c:forEach items =$ {countries}var =country>

您需要一个 Servlet 或一个 ServletContextListener $ {countries} 放置在所需的范围内。如果这个列表应该是基于请求的,那么使用 Servlet doGet()

  protected void doGet(HttpServletRequest请求,HttpServletResponse响应){
Map< String,String> countries = MainUtils.getCountries();
request.setAttribute(国家,国家);
request.getRequestDispatcher(/ WEB-INF / page.jsp)。forward(request,response);

$ / code>

或者如果这个列表应该是一个应用程序范围内的常量,那么使用 ServletContextListener contextInitialized(),这样它将只加载一次并保存在内存中:

  public void contextInitialized(ServletContextEvent event){
Map< String,String> countries = MainUtils.getCountries();
event.getServletContext()。setAttribute(countries,countries);

$ / code>

在这两种情况下, countries 将通过<$ c在 EL 中提供$ b> $ {countries}



希望这有助于您。 还有:


How can I loop through a HashMap in JSP?

<%
    HashMap<String, String> countries = MainUtils.getCountries(l);
%>

<select name="country">
    <% 
        // Here I need to loop through countries.
    %>
</select>

解决方案

Just the same way as you would do in normal Java code.

for (Map.Entry<String, String> entry : countries.entrySet()) {
    String key = entry.getKey();
    String value = entry.getValue();
    // ...
}


However, scriptlets (raw Java code in JSP files, those <% %> things) are considered a poor practice. I recommend to install JSTL (just drop the JAR file in /WEB-INF/lib and declare the needed taglibs in top of JSP). It has a <c:forEach> tag which can iterate over among others Maps. Every iteration will give you a Map.Entry back which in turn has getKey() and getValue() methods.

Here's a basic example:

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

<c:forEach items="${map}" var="entry">
    Key = ${entry.key}, value = ${entry.value}<br>
</c:forEach>

Thus your particular issue can be solved as follows:

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

<select name="country">
    <c:forEach items="${countries}" var="country">
        <option value="${country.key}">${country.value}</option>
    </c:forEach>
</select>

You need a Servlet or a ServletContextListener to place the ${countries} in the desired scope. If this list is supposed to be request-based, then use the Servlet's doGet():

protected void doGet(HttpServletRequest request, HttpServletResponse response) {
    Map<String, String> countries = MainUtils.getCountries();
    request.setAttribute("countries", countries);
    request.getRequestDispatcher("/WEB-INF/page.jsp").forward(request, response);
}

Or if this list is supposed to be an application-wide constant, then use ServletContextListener's contextInitialized() so that it will be loaded only once and kept in memory:

public void contextInitialized(ServletContextEvent event) {
    Map<String, String> countries = MainUtils.getCountries();
    event.getServletContext().setAttribute("countries", countries);
}

In both cases the countries will be available in EL by ${countries}.

Hope this helps.

See also:

这篇关于如何在JSP中循环访问HashMap?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆