package org.kodejava.util;
import java.util.TimeZone;
public class HostDefaultTimeZone {
public static void main(String[] args) {
// Gets the default TimeZone ID for this host
String id = TimeZone.getDefault().getID();
System.out.println("Default Time Zone ID: " + id);
}
}
The default timezone id for this host is:
Default Time Zone ID: Asia/Shanghai
Latest posts by Wayan (see all)
- How do I convert Map to JSON and vice versa using Jackson? - June 12, 2022
- How do I find Java version? - March 21, 2022
- How do I convert CSV to JSON string using Jackson? - February 13, 2022