Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> การเขียนโปรแกรม

จะใช้เขตเวลาใน JSP ได้อย่างไร?


tag ใช้เพื่อระบุเขตเวลาที่แท็กทั้งหมดภายในเนื้อหาจะใช้

คุณสมบัติ

แท็กมีคุณสมบัติดังต่อไปนี้ −

แอตทริบิวต์ คำอธิบาย จำเป็น ค่าเริ่มต้น
ค่า เขตเวลาที่ใช้กับร่างกาย ใช่ ไม่มี

ตัวอย่าง

<%@ taglib uri = "https://java.sun.com/jsp/jstl/core" prefix = "c" %>
<%@ taglib uri = "https://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>

รหัสข้างต้นจะสร้างผลลัพธ์ดังต่อไปนี้ -

การจัดรูปแบบ:23 กันยายน 2010 15:09:09 น. ภาษีมูลค่าเพิ่ม

Etc/GMT+12 22-Sep-2010 23:09:09
Etc/GMT+11 23-Sep-2010 00:09:09