如何在JSP中使用时区?

<FMT:时区>标签用于指定其身体内的所有标签将使用的时区。

属性

<FMT:时区>标签具有以下属性-

属性描述需要默认
适用于身体的时区没有

示例

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

上面的代码将产生以下结果-

格式:2010年9月23日15:09:09 GST 

Etc / GMT + 122010年9月22日23:09:09
Etc / GMT + 112010年9月23日00:09:09