格式标签-fmt:timeZone

<fmt:timeZone>标签用于设置时区。

<fmt:timeZone>标签的语法为:

<fmt:timeZone attributes> 内容 </fmt:timeZone>  

让我们看一个简单的示例:

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<html>
<head>
    <title>一点教程网-标签示例</title>
</head>
<body>

<c:set var="str" value="<%=new java.util.Date()%>" />
<table border="2" width="100%">
    <tr>
        <td width="100%" colspan="2" bgcolor="#FF7F50">
            <p align="center">
                <b>
                    <font color="#000000" size="6">不同时区的时间:
                        <fmt:formatDate value="${str}" type="both"
                                        timeStyle="long" dateStyle="long" />
                    </font>
                </b>
            </p>
        </td>
    </tr>

    <c:forEach var="zone"
               items="<%=java.util.TimeZone.getAvailableIDs()%>">
        <tr>
            <td width="50%"  bgcolor="#C0C0C0">
                <c:out value="${zone}" />
            </td>
            <td width="50%" bgcolor="#FFEBCD">
                <fmt:timeZone value="${zone}">
                    <fmt:formatDate value="${str}" timeZone="${zn}"
                                    type="both"/>
                </fmt:timeZone>
            </td>
        </tr>
    </c:forEach>
</table>

</body>

</html>

运行结果为:

热门文章

优秀文章