Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

TimeZone getDefault() Method in Java with Examples

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

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]
My Personal Notes arrow_drop_up
Last Updated : 02 Jan, 2019
Like Article
Save Article
Similar Reads
Related Tutorials