package org.kodejava.util;
import java.util.TimeZone;
public class TimezonesExample {
public static void main(String[] args) {
String[] availableTimezones = TimeZone.getAvailableIDs();
for (String timezone : availableTimezones) {
System.out.println("Timezone ID = " + timezone);
}
}
}
Some examples of the returned timezones ids are:
Timezone ID = Etc/GMT+12
Timezone ID = Etc/GMT+11
Timezone ID = MIT
Timezone ID = Pacific/Apia
Timezone ID = Pacific/Midway
Timezone ID = Pacific/Niue
Timezone ID = Pacific/Pago_Pago
Timezone ID = Pacific/Samoa
Timezone ID = US/Samoa
...
Latest posts by Wayan (see all)
- How do I build simple search page using ZK and Spring Boot? - March 8, 2023
- How do I calculate days between two dates excluding weekends and holidays? - January 12, 2023
- How do I discover the quarter of a given date? - January 11, 2023