라벨
<%
String[] testArray={"str1","str2","str3"};
pageContext.setAttribute("test",testArray);
%>
<logic:iterate id="show" name="test">
<bean:write name="show"/>
</logic:iterate>
그 결 과 는:
str1
str2
str3
또한 length 속성 을 통 해 출력 요소 의 개 수 를 지정 할 수 있 습 니 다.다음 코드 와 같이:
<logic:iterate id="show" name="test" length="2" offset="1">
<bean:write name="show"/>
</logic:iterate>
offset 속성 은 몇 번 째 요소 부터 출력 을 지정 합 니 다.이 곳 이 1 이면 두 번 째 요소 부터 출력 을 시작 합 니 다.
따라서 이 코드 의 실행 결 과 는 출력 해 야 합 니 다:
str2
str3
또한 이 표 시 는 indexId 속성 이 있 습 니 다.현재 집합 에 접근 하고 있 는 요 소 를 저장 하 는 변 수 를 지정 합 니 다.예 를 들 어:
4.567913.그 결과:
1:str2
2:str3
2,HashMap 반복
<logic:iterate id="show" name="test" length="2" offset="1" indexId="number">
<bean:write name="number"/>:<bean:write name="show"/>
</logic:iterate>
bean:write 에서 property 의 key 와 value 를 통 해 각각 HaspMap 대상 의 키 와 값 을 얻 습 니 다.그 결과:
country 5:독일
country 3:영국
국가 2:미국
country 4:프랑스
국가 1:중국
결 과 를 보면 추가 순서에 따라 표시 되 지 않 았 다.HaspMap 이 무질서 하 게 저장 되 어 있 기 때 문 입 니 다.
3.끼 워 넣 기
<%
HashMap countries=new HashMap();
countries.put("country1"," ");
countries.put("country2"," ");
countries.put("country3"," ");
countries.put("country4"," ");
countries.put("country5"," ");
pageContext.setAttribute("countries",countries);
%>
<logic:iterate id="country" name="countries">
<bean:write name="country" property="key"/>:
<bean:write name="country" property="value"/>
</logic:iterate>
실행 효과:
0 red green blue
1 중국 미국 프랑스
2 조 던 부시 클 린 턴
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.