라벨

2306 단어 자바bean
1.배열 을 순환 적 으로 옮 겨 다 니 기
표 시 를 사용 하면 배열 을 옮 겨 다 닐 수 있 습 니 다.다음은 예제 코드 입 니 다.
<%
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 조 던 부시 클 린 턴

좋은 웹페이지 즐겨찾기