Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
String と int 値を連結したキーを使用して、EL の HashMap 要素にアクセスする方法はありますか。このようなもの:
<c:forEach begin="1" end="5" var="current"> <c:out value="${myHashMap['elem-' + current]}"/> </c:forEach>
このコードは、目的の動作を実現できます
<c:forEach begin="1" end="5" var="current"> <c:set var="key" value="elem-${current}" /> <c:out value="${myHashMap[key]}"/> </c:forEach>