Open In App

TimeZone getDefault() Method in Java with Examples

Improve
Improve
Like Article
Like
Save
Share
Report

The getDefault() method of TimeZone class in Java is used to know the default TimeZone for this system or host. This may vary in according to the implementation in different environment.

Syntax:

public static TimeZone getDefault()

Parameters: The method does not take any parameters.

Return Value: The method returns the default TimeZone of the host.

Below program illustrates the working of getDefault() Method of TimeZone:




// Java code to illustrate getDefault() method
  
import java.util.*;
  
public class TimeZoneDemo {
    public static void main(String args[])
    {
        // Creating an object of TimeZone class.
        TimeZone time_zone_default
            = TimeZone.getDefault();
  
        // Displaying the default TimeZone
        System.out.println("Default TimeZone: "
                           + time_zone_default);
    }
}


Output:

Default TimeZone: sun.util.calendar.ZoneInfo[id="Etc/UTC",
offset=0, dstSavings=0, useDaylight=false, transitions=0, lastRule=null]

Last Updated : 02 Jan, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads