Latest web development tutorials

<Fmt: setTimeZone> tag

JSP Standard Tag Library JSP Standard Tag Library

<Fmt: setTimeZone> tag is used to copy a time zone object to the specified scope.

Syntax

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

Attributes

<Fmt: setTimeZone> tag has the following attributes:

Attributes description If necessary Defaults
value Time zone Yes no
var Variable name to store the new time zone no Replace default
scope Variable scope no Page


Examples 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: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>

Results are as follows:

当前时区时间: 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