DateFormat getTimeZone() Method in Java with Examples Last Updated : 28 Mar, 2019 Summarize Comments Improve Suggest changes Share Like Article Like Report The getTimeZone() method in DateFormat class is used to return the current time-zone of the calendar of this DateFormat. Syntax: public TimeZone getTimeZone() Parameters: The method does not take any parameters. Return Value: The method returns timezone associated with the calendar of DateFormat. Below programs illustrate the working of getTimeZone() Method of DateFormat class: Example 1: Java // Java code to illustrate // getTimeZone() method import java.text.*; import java.util.*; public class DateFormat_Demo { public static void main(String[] argv) { // Initializing the first formatter DateFormat DFormat = DateFormat.getDateInstance(); // Converting the dateformat to string String str = DFormat.format(new Date()); // Getting the available timezones System.out.println(DFormat .getTimeZone() .getDisplayName()); } } Output: Coordinated Universal Time Reference: https://docs.oracle.com/javase/7/docs/api/java/text/DateFormat.html#getTimeZone() Comment More infoAdvertise with us Next Article Calendar getTimeZone() Method in Java with Examples C chinmoy lenka Follow Improve Article Tags : Misc Java Java-Functions Java-text package Java-DateFormat +1 More Practice Tags : JavaMisc Similar Reads DateFormat getTimeInstance() Method in Java with Examples DateFormat class of java.text package is an abstract class that is used to format and parse dates for any locale. It allows us to format date to text and parse text to date. DateFormat class provides many functionalities to obtain, format, parse default date/time. Note: DateFormat class extends Form 2 min read DateFormat getTimeInstance() Method in Java with Examples DateFormat class of java.text package is an abstract class that is used to format and parse dates for any locale. It allows us to format date to text and parse text to date. DateFormat class provides many functionalities to obtain, format, parse default date/time. Note: DateFormat class extends Form 2 min read DateFormat getDateTimeInstance() Method in Java with Examples DateFormat class of java.text package is an abstract class that is used to format and parse dates for any locale. It allows us to format date to text and parse text to date. DateFormat class provides many functionalities to obtain, format, parse default date/time. Note: DateFormat class extends Form 2 min read DateFormat getDateTimeInstance() Method in Java with Examples DateFormat class of java.text package is an abstract class that is used to format and parse dates for any locale. It allows us to format date to text and parse text to date. DateFormat class provides many functionalities to obtain, format, parse default date/time. Note: DateFormat class extends Form 2 min read Calendar getTimeZone() Method in Java with Examples The getTimeZone() method in Calendar class is used to return the current time-zone of this Calendar. Syntax: public TimeZone getTimeZone() Parameters: The method does not take any parameters.Return Value: The method returns timezone of this Calendar object. Below programs illustrate the working of g 2 min read DateFormat getCalendar() Method in Java with Examples The getCalendar() Method of DateFormat class in Java is used to get the calendar associated with this date/time format object. Syntax: public Calendar getCalendar() Parameter: The method does not take any parameters. Return Value: The method returns an instance of Calendar for this DateFormat object 2 min read Like