티스토리 뷰
JSTL Core :: forTokens 태그
각각의 데이터를 구별 할 수 있는 구분자로 나눠진 데이터
속성
Name | Dynamic | Decription | Type | Required |
---|---|---|---|---|
var | false | Name of the exported scoped variable for the current item of the iteration. This scoped variable has nested visibility. |
String | No |
items | true | String of tokens to iterate over. | String | No |
delims | true | The set of delimiters (the characters that separate the tokens in the string). | String | No |
varStatus | false | Name of the exported scoped variable for the status of the iteration. Object exported is of type javax.servlet.jsp.jstl.core.LoopTagStatus . This scoped variable has nested visibility. |
String | No |
begin | true | Iteration begins at the token located at the specified index. First token has index 0. | int | No |
end | true | Iteration ends at the token located at the specified index (inclusive). | int | No |
step | true | Iteration will only process every step tokens of the string, starting with the first one. | String | No |
Syntax
<c:forTokens items="stringOfTokens" delims="delimiters"
[var="varName"]
[varStatus="varStatusName"]
[begin="begin"] [end="end"] [step="step"]>
body content
</c:forEach>
사용 예제
<%@ page import="java.util.HashMap"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html>
<head>
<title>JSTL forEach tag example</title>
</head>
<body>
<h1>Hello world!</h1>
<!-- Set String Tokens -->
<c:set var="token" value="Java,Spring,C#,.NET,SQL" />
<!-- Display Each token -->
<c:forTokens var="list" items="${token}" delims=",">
Token value is ${list} <br/>
</c:forTokens>
</body>
</html>
설명
내부 적으로는 java.util.StringTokenizer 를 이용하여 구분자 값으로 string 값을 token 화 한다.
결과
Reference
'JSTL' 카테고리의 다른 글
[JSTL] Core :: forEach 태그 (0) | 2016.08.10 |
---|---|
[JSTL] Core :: choose tag (0) | 2016.08.08 |
[JSTL] Core - if tag (0) | 2016.08.07 |
[JSTL] Core :: catch tag (0) | 2016.08.07 |
[JSTL] Core :: remove tag (0) | 2016.08.04 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- InputStreamReader
- IF
- remove
- reflection
- 파일
- foreach
- Rowcount
- Set
- isDirectory
- catch
- 임시파일
- BufferedReader
- FileInputStream
- file
- select
- BufferedWriter
- FOUND_ROW
- syntax
- java
- choose
- 자바
- IO
- forToken
- Field
- JSP
- 라이브아카데미
- jstl
- 소스코드
- InputStreamWriter
- highlight.js
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함