- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to set time zone in a JSP?
The <fmt:setTimeZone> tag is used to copy a time zone object into the specified scoped variable.
Attribute
The <fmt:setTimeZone> tag has the following attributes −
Attribute | Description | Required | Default |
---|---|---|---|
Value | Time zone to expose as a scoped or configuration variable | Yes | None |
var | Name of the variable to store the new time zone | No | Replace default |
scope | Scope of the variable to store the new time zone | No | Page |
Example
<%@ 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 Tag</title> </head> <body> <c:set var = "now" value = "<%=new java.util.Date()%>" /> <p>Date in Current Zone: <fmt:formatDate value = "${now}" type = "both" timeStyle = "long" dateStyle = "long" /></p> <p>Change Time Zone to 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>
The above code will generate the following result −
Date in Current Zone: 23 September 2010 15:21:37 GST Change Time Zone to GMT-8 Date in Changed Zone: 23 September 2010 03:21:37 GMT-08:00
- Related Articles
- How to use time zone in a JSP?
- Set the base time zone offset to GMT in Java
- How to handle times with a time zone in Matplotlib?
- Java Program to display Current Time in another Time Zone
- How to set the data source in a JSP?
- How to print current date and time in a JSP page?
- How to get current time zone in android using clock API class?
- Get the default Time Zone in Java
- Python Pandas - Convert Timestamp to another time zone
- How to return the time-zone offset in minutes for the current locale?
- How to set result of a java expression in a property in JSP?
- Display time zone with SimpleDateFormat(“z”) in Java
- mysql_tzinfo_to_sql - Load the Time Zone Tables in MySQL
- Python Pandas - Convert naive Timestamp to local time zone
- How do I get the current time zone of MySQL?

Advertisements