Я пытаюсь получить TimeZone для пользователя.
Для этого у меня есть код страны, который является действующим кодом страны ISO. Эти коды представляют собой двухбуквенные коды в верхнем регистре, как определено в ISO-3166. Вы можете найти полный список этих кодов на нескольких сайтах, таких как: http://www.chemie.fu-berlin.de/diverse/doc/ISO_3166.html
Я думаю, что ответ "нет, потому что это очень много отношений... может быть много времени для такой страны, как США...". Это проблема...
Я попытался что-то вроде:
//CountryEnum contains ISO_3166 values (http://www.chemie.fu-berlin.de/diverse/doc/ISO_3166.html)
//List all country to test timezone:
for (int i = 0; i < CountryEnum.values().length; i++) {
String isoCountryCode = CountryEnum.values()[i].name();// Get the iso country code
Locale locale = new Locale(isoCountryCode);// Build a country specific locale
Calendar calendar = Calendar.getInstance(locale);// Build a calendar with the specific locale
String timeZone = calendar.getTimeZone().getDisplayName();// Build a timeZone with the calendar
System.out.println("LOCALE : "+locale+" / COUNTRY: "+isoCountryCode+" / TIMEZONE: "+timeZone);
}
Но он всегда возвращает сервер TimeZone...
Любые идеи?