Latest web development tutorials

<Fmt: Zeitzone> -Tag

JSP Standard-Tag-Bibliothek JSP Standard - Tag - Bibliothek

<Fmt: Zeitzone> Tag wird verwendet, um die Zeitzone angeben, für die Verwendung anderer Etiketten.



Syntax

<fmt:setLocale value="<string>" variant="<string>" scope="<string>"/>

Immobilien

<Fmt: Zeitzone> Tag hat folgende Attribute:

Immobilien Beschreibung notfalls Default
Wert Zeitzone es ist keine


Beispiele Demo

<%@ 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>

Ergebnisse sind wie folgt:

fmt-Zeitzone


JSP Standard-Tag-Bibliothek JSP Standard - Tag - Bibliothek