如何使用 JSTL forEach 循环迭代 HashMap?

发布于 2025-01-04 23:03:20 字数 105 浏览 0 评论 0原文

在我的 Spring MVC 应用程序中,我从controllerServlet 返回了HashMap。现在我需要使用 JSTL 在我的 jsp 中打印它。请帮忙解决这个问题。我对这一切都是新手。

In my Spring MVC application i have HashMap returned from my controllerServlet. Now I need to print that in my jsp using JSTL. Please help on this. I'm new in all this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

老旧海报 2025-01-11 23:03:20

试试这个,

假设我的 MAP 是:-

Map<String, String> countryList = new HashMap<String, String>();
countryList.put("United States", "Washington DC");
countryList.put("India", "Delhi");
countryList.put("Germany", "Berlin");
countryList.put("France", "Paris");
countryList.put("Italy", "Rome");

request.setAttribute("capitalList", countryList);

所以在 JSP 中,

<c:forEach var="country" items="${capitalList}">
    Country: ${country.key}  - Capital: ${country.value}
</c:forEach>

希望这有帮助!

Try this,

suppose my MAP is :-

Map<String, String> countryList = new HashMap<String, String>();
countryList.put("United States", "Washington DC");
countryList.put("India", "Delhi");
countryList.put("Germany", "Berlin");
countryList.put("France", "Paris");
countryList.put("Italy", "Rome");

request.setAttribute("capitalList", countryList);

So in JSP ,

<c:forEach var="country" items="${capitalList}">
    Country: ${country.key}  - Capital: ${country.value}
</c:forEach>

Hope this helps !

请远离我 2025-01-11 23:03:20

要从哈希映射访问动态值,您可以使用大括号符号 []

${someMap[dynamicKey]}  

例如,考虑 @Som's 答案映射

Map<String, String> countryMap = new HashMap<String, String>();
countryMap.put("United States", "Washington DC");
countryMap.put("India", "Delhi");
countryMap.put("Germany", "Berlin");
countryMap.put("France", "Paris");
countryMap.put("Italy", "Rome");

request.setAttribute("countryMap", countryMap);  

JSP

设置密钥

<c:set var="keyName" value="India" />  

传递动态密钥

${countryMap[keyName]}

或者直接

${countryMap['United States']}  

参见

For accessing dynamic value from hash map you can use brace notation [].

${someMap[dynamicKey]}  

For example, consider @Som's answer map

Map<String, String> countryMap = new HashMap<String, String>();
countryMap.put("United States", "Washington DC");
countryMap.put("India", "Delhi");
countryMap.put("Germany", "Berlin");
countryMap.put("France", "Paris");
countryMap.put("Italy", "Rome");

request.setAttribute("countryMap", countryMap);  

JSP

Set key

<c:set var="keyName" value="India" />  

pass the dynamic key

${countryMap[keyName]}

Or directly

${countryMap['United States']}  

See also

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文