Skip to content

Instantly share code, notes, and snippets.

@tldev-de
Created March 23, 2021 22:37
Show Gist options
  • Save tldev-de/8a1c0247b59042dd4faa5c50b65d4754 to your computer and use it in GitHub Desktop.
Save tldev-de/8a1c0247b59042dd4faa5c50b65d4754 to your computer and use it in GitHub Desktop.
get timezone in java
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