속성
속성 | 설명 | 필수 | 기본값 |
---|---|---|---|
값 | 본문에 적용할 시간대 | 예 | 없음 |
예시
<%@ taglib uri = "https://java.sun.com/jsp/jstl/core" prefix = "c" %> <%@ taglib uri = "https://java.sun.com/jsp/jstl/fmt" prefix = "fmt" %> <html> <head> <title>JSTL fmt:timeZone Tag</title> </head> <body> <c:set var = "now" value = "<% = new java.util.Date()%>" /> <table border = "1" width = "100%"> <tr> <td width = "100%" colspan = "2" bgcolor = "#0000FF"> <p align = "center"> <b> <font color = "#FFFFFF" size = "4">Formatting: <fmt:formatDate value = "${now}" type = "both" timeStyle = "long" dateStyle = "long" /> </font> </b> </p> </td> </tr> <c:forEach var = "zone" items = "<% = java.util.TimeZone.getAvailableIDs()%>"> <tr> <td width = "51%"> <c:out value = "${zone}" /> </td> <td width = "49%"> <fmt:timeZone value = "${zone}"> <fmt:formatDate value = "${now}" timeZone = "${zn}" type = "both" /> </fmt:timeZone> </td> </tr> </c:forEach> </table> </body> </html>
위의 코드는 다음 결과를 생성합니다 -
형식 지정:2010년 9월 23일 15:09:09 GST | |
기타/GMT+12 | 2010년 9월 22일 23:09:09 |
기타/GMT+11 | 2010년 9월 23일 00:09:09 |