Latest web development tutorials

<Fmt: settimezone> tag

JSP standard Tag Library JSP standard Tag Library

<Fmt: settimezone> est utilisée pour copier un objet de fuseau horaire à la portée spécifiée.

syntaxe

<fmt:setTimeZone value="<string>" var="<string>" scope="<string>"/>

propriété

<Fmt: settimezone> balise a les attributs suivants:

propriété description le cas échéant Par défaut
valeur fuseau horaire il est aucun
var Nom de la variable pour stocker le nouveau fuseau horaire aucun Remplacer par défaut
portée portée variable aucun page


Exemples Démo

<%@ 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:setTimeZone 标签</title>
</head>
<body>
<c:set var="now" value="<%=new java.util.Date()%>" />
<p>当前时区时间: <fmt:formatDate value="${now}" 
             type="both" timeStyle="long" dateStyle="long" /></p>
<p>修改为 GMT-8 时区:</p>
<fmt:setTimeZone value="GMT-8" />
<p>Date in Changed Zone: <fmt:formatDate value="${now}" 
             type="both" timeStyle="long" dateStyle="long" /></p>
</body>
</html>

Les résultats sont les suivants:

当前时区时间: 2016年6月26日 上午11时34分05秒

修改为 GMT-8 时区:

Date in Changed Zone: 2016年6月25日 下午07时34分05秒

JSP standard Tag Library JSP standard Tag Library