栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

在JSP中迭代ArrayList

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

在JSP中迭代ArrayList

最好使用a

java.util.Map
来存储键和值,而不是两个
ArrayList
,例如:

Map<String, String> foods = new HashMap<String, String>();// here key stores the food pres// and values are that which will be visible to the user in the drop-downfoods.put("man", "mango");foods.put("app", "apple");foods.put("gra", "grapes");// if this is your servlet or action class having access to HttpRequest object thenhttpRequest.setAttribute("foods", foods); // so that you can retrieve in JSP

现在要在JSP中迭代地图,请使用:

<select id="food" name="fooditems">    <c:forEach items="${foods}" var="food">        <option value="${food.key}"> ${food.value}        </option>    </c:forEach></select>

或不带JSTL:

<select id="food" name="fooditems"><%Map<String, String> foods = (Map<String, String>) request.getAttribute("foods");for(Entry<String, String> food : foods.entrySet()) {%>    <option value="<%=food.getKey()%>">        <%=food.getValue() %>    </option><%}%></select>

要了解有关使用JSTL进行迭代的更多信息 ,这里是一个很好的SO答案。



转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/430538.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号