<fmt:setTimeZone>标签

JSTL <fmt:setTimeZone> 标签用于设定默认时区。

语法

JSP <fmt:setTimeZone> 标签的语法如下:
<fmt:setTimeZone value="timeValue" [scope="page|request|session|application"] var="varname" />
其中:
  • value:要设置的时区;
  • var:存储新时区的变量名;
  • scope:可选项,var 变量的有效范围。

示例

<fmt:setTimeZone> 标签的简单实例如下。
<%@ 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"%>
<!DOCTYPE html>
<html>
<head>
<title>编程帮(www.biancheng.net)</title>
</head>
<body>
    <c:set var="str" value="<%=new java.util.Date()%>" />

    <fmt:setTimeZone value="GMT+8" />
    <fmt:formatDate value="${str}" type="both" dateStyle="full"
        timeStyle="full" var="dateref" />
    <h3>北京时间:${dateref}</h3>
</body>
</html>

页面输出内容如下:

中欧时间:2021年1月7日 星期四 上午10时03分35秒 GMT+08:00