W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
<fmt:timeZone>標簽用來指定時區(qū),供其它標簽使用。
<fmt:setLocale value="<string>" variant="<string>" scope="<string>"/>
<fmt:timeZone>標簽有如下屬性:
屬性 | 描述 | 是否必要 | 默認值 |
---|---|---|---|
value | 時區(qū) | 是 | 無 |
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %> <html> <head> <title>JSTL fmt:timeZone 標簽</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>
運行結(jié)果如下:
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: