

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Display TimeZone in zzzz format in Java
Use the zzzz format like this for TimeZone.
SimpleDateFormat("zzzz");
Let us see an example −
// displaying timezone in zzzz format simpleformat = new SimpleDateFormat("zzzz"); String strTimeZone = simpleformat.format(new Date()); System.out.println("TimeZone in zzzz format = "+strTimeZone);
Above, we have used the SimpleDateFormat class, therefore the following package is imported −
import java.text.SimpleDateFormat;
The following is an example −
Example
import java.text.Format; import java.text.SimpleDateFormat; import java.util.Date; import java.util.Calendar; public class Demo { public static void main(String[] args) throws Exception { // displaying current date and time Calendar cal = Calendar.getInstance(); SimpleDateFormat simpleformat = new SimpleDateFormat("E, dd MMM yyyy HH:mm:ss"); System.out.println("Date and time = "+simpleformat.format(cal.getTime())); // displaying date simpleformat = new SimpleDateFormat("dd/MMMM/yyyy"); String str = simpleformat.format(new Date()); System.out.println("Current Date = "+str); // current time simpleformat = new SimpleDateFormat("HH.mm.ss"); String strTime = simpleformat.format(new Date()); System.out.println("Current Time = "+strTime); // displaying timezone in zzzz format simpleformat = new SimpleDateFormat("zzzz"); String strTimeZone = simpleformat.format(new Date()); System.out.println("TimeZone in zzzz format = "+strTimeZone); } }
Output
Date and time = Mon, 26 Nov 2018 11:01:24 Current Date = 26/November/2018 Current Time = 11.01.24 TimeZone in zzzz format = Coordinated Universal Time
- Related Questions & Answers
- Display TimeZone in z format in Java
- SimpleDateFormat('zzzz') in Java
- Display Month in MMM format in Java
- Display Month in MMMM format in Java
- Display hour in KK (00-11) format in Java
- Display Seconds in ss format (01, 02) in Java
- Java Program to display Time in 12-hour format
- Java Program to display time in 24-hour format
- Display Date in E MMM dd yyyy format in Java
- Get the ID of this timezone in Java
- Display hour in h (1-12 in AM/PM) format in Java
- Display hour in hh (01-12 in AM/PM) format in Java
- Java Program to display date with day name in short format
- How to format and display date in Java as '201904'
- Java Program to Display Dates of Calendar Year in Different Format
Advertisements