Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get the current Time and TimeZone from Locale?

Tags:

I have this weird problem, when I create a calendar with a locale, the TimeZone just reverts to the local one

public void start(Locale locale){     String s = locale.getDisplayName();      System.err.println(s);     Calendar c = new GregorianCalendar(locale);     System.err.println(c.getTimeZone()); } 

And this is the output:

 español (Argentina)  sun.util.calendar.ZoneInfo[id="Europe/Bucharest", //etc more useless date here.... 

How can i get the proper time from a specific locale ?

like image 592
Alexandru Chirila Avatar asked May 13 '12 10:05

Alexandru Chirila


People also ask

How do I get locale time zone?

The short answer: you can't. The long answer: There is no such thing as "proper time zone for a locale". That's just because there are a few countries that have more than one time zone (for example United States). Time zone is a different concept.

How do I get a timestamp with time zones?

CURRENT_TIMESTAMP returns the current date and time in the session time zone, in a value of datatype TIMESTAMP WITH TIME ZONE . The time zone offset reflects the current local time of the SQL session. If you omit precision, then the default is 6.

How do I get local timezone in python?

You can get the current time in a particular timezone by using the datetime module with another module called pytz . You can then check for all available timezones with the snippet below: from datetime import datetime import pytz zones = pytz. all_timezones print(zones) # Output: all timezones of the world.

How do you get the current timezone in react?

match(/\(([^\)]+)\)$/)[1]; console. log("timezone", timezone); Now if you want to get the abbreviations or short forms of the timezone like IST, GMT, etc. then just pick the first letter of a string in the timezone.


1 Answers

The short answer: you can't.

The long answer: There is no such thing as "proper time zone for a locale". That's just because there are a few countries that have more than one time zone (for example United States). Time zone is a different concept.

Anyway, you are looking to solve your problem. I am guessing that you are writing a web application and you see that the time zone is reverting to the server default. That's a typical situation. Both Locale.getDefault() and TimeZone.getDefault() will return server-related information. The JVM has no way of knowing the "proper" time zone. So what can you do about it?

  1. You can add time zone information to user profile (if you have one), or create a time zone combo box (so that the user can switch at runtime). Then you can assign an appropriate object to DateFormat instance and it will convert time zone automatically.
  2. You can read the current time zone offset from the client via JavaScript Date Object's getTimezoneOffset() function and somehow (AJAX) send it to the server. The problem with this method is that there are several time zones with that offset, and the selected time zone might be inappropriate for other dates. Of course you can guess the time zone by polling the data around time change date, but this is probably not what you want to do.
  3. You can send the unformatted time to the client (for example written as ISO 8601 date-time format or as a Unix time of the epoch in relation to UTC) and have Globalize or Dojo format date and time for you.

Out of these three possible choices, I always opt for number 1. By putting time zone information to user profile, you know for sure what his/her preferred time zone is, regardless of their current web browser, etc. Please keep in mind that some users might want to use your application while visiting other countries...

like image 183
Paweł Dyda Avatar answered Oct 14 '22 08:10

Paweł Dyda