Created
March 23, 2021 22:37
-
-
Save tldev-de/8a1c0247b59042dd4faa5c50b65d4754 to your computer and use it in GitHub Desktop.
get timezone in java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.TimeZone; | |
public class GetTimeZone { | |
public static void main(String[] args) { | |
System.out.println(TimeZone.getDefault()); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment