Tagged Questions
A time zone is a region on Earth that has a uniform, legally mandated standard time.
414
votes
6answers
57k views
Why is subtracting these two times (in 1927) giving a strange result?
If I run the following program, which parses two date strings referencing times one second apart and compares them:
public static void main(String[] args) throws ParseException {
SimpleDateFormat ...
319
votes
22answers
18k views
Daylight saving time and Timezone best practices
I am hoping to make this question and the answers to it the definitive guide to dealing with daylight saving time, in particular for dealing with the actual change overs.
If you have anything to add, ...
125
votes
17answers
30k views
How can I determine a web user's time zone?
Is there a standard way for a Web Server to determine what Time zone offset a user is in?
From an HTTP header or part of the user-agent description,perhaps?
41
votes
8answers
23k views
Timezone lookup from latitude longitude
Is there any library (or even better, web service) available which can convert from a latitude/longitude into a time zone?
33
votes
6answers
638 views
Get the Olson TZ name for the local timezone?
How do I get the Olson timezone name (such as Australia/Sydney) corresponding to the value given by C's localtime call?
This is the value overridden via TZ, by symlinking /etc/localtime, or setting a ...
32
votes
11answers
63k views
How can I get the current date and time in UTC or GMT in Java?
When I create a new Date object, it is initialized to the current time but in the local timezone. How can I get the current date and time in GMT?
29
votes
6answers
695 views
How to elegantly deal with timezones
I have a website that is hosted in a different timezone than the users using the application. In addition to this, users can have a specific timezone. I was wondering how other SO users and ...
23
votes
2answers
516 views
Why date() works twice as fast if we set time zone from code?
Have you noticed that date() function works 2x faster than usual if you set actual timezone inside your script before any date() call? I'm very curious about this.
Look at this simple piece of code:
...
19
votes
9answers
47k views
How to handle calendar TimeZones using Java?
I have a Timestamp value that comes from my application. The user can be in any given local TimeZone.
Since this date is used for a WebService that assumes the time given is always in GMT, I have a ...
17
votes
8answers
17k views
JPA/Hibernate store date in UTC time zone
How can I configure JPA/Hibernate to store a date/time in the database as UTC (GMT) time zone? Consider this annotated JPA entity:
public class Event {
@Id
public int id;
...
13
votes
4answers
256 views
Timezone Strategy
I am building a MVC 3 application where the users may not be in the same time zone, so my intent was to store everything in UTC and convert from UTC to local time in the views and localtime to UTC on ...
13
votes
4answers
8k views
Client side time zone support in GWT
I'm working on a GWT app where I need to support the following scenario:
The server is located in time zone A
The client's browser is set to time zone B
The GWT app is configured to display date/time ...
13
votes
2answers
3k views
Dealing with timezones in PHP
Some issues with timezones in PHP have been in the back of my mind for a while now, and I was wondering if there are better ways to handle it than what I'm currently doing.
All of the issues revolve ...
13
votes
9answers
3k views
How would you organize a timezone dropdown? [closed]
I'm trying to present the (web) user with a useful subset of Olson timezones, though with a friendlier naming convention.
Any recommendations for how to sort and label them for maximum usefulness? ...
12
votes
2answers
2k views
heroku time zone problem, logging local server time
UPDATE: Ok, I didn't formulate a good Q to be answered. I still struggle with heroku being on -07:00 UTC and I at +02:00 UTC.
Q: How do I get the log written in the correct Time.zone ?
The 9 hours ...
12
votes
7answers
17k views
Sqlite: CURRENT_TIMESTAMP is in GMT, not the timezone of the machine
I have a sqlite (v3) table with this column definition:
"timestamp" DATETIME DEFAULT CURRENT_TIMESTAMP
The server that this database lives on is in the CST time zone. When I insert into my table ...
11
votes
6answers
569 views
How to check is timezone identifier valid from code?
I'll try to explain what's the problem here.
According to list of supported timezones from PHP manual, I can see all valid TZ identifiers in PHP.
My first question is how to get that list from code ...
11
votes
4answers
7k views
Generating a drop down list of timezones with PHP
Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5.
I need ...
11
votes
5answers
3k views
python time to age part 2, timezones
Following on from my previous question: http://stackoverflow.com/questions/508727/python-time-to-age
I have now come across a problem regarding the timezone, turns out that its not always going to be ...
11
votes
5answers
17k views
How can I parse dates and convert time zones in Perl?
I've used the localtime function in Perl to get the current date and time but need to parse in existing dates. I have a GMT date in the following format: "20090103 12:00" I'd like to parse it into a ...
10
votes
3answers
637 views
Location based Timezone Retrieval
Given: LDAP stores location of users.
How do I drive their timezones using their location? Any pointers are accepted, Java language preferred.
Thanks in advance.
10
votes
4answers
5k views
Difference between UTC and GMT Standard Time in .NET
In .NET, the following statements return different values:
Response.Write(
TimeZoneInfo.ConvertTime(
DateTime.Parse("2010-07-01 5:30:00.000"),
TimeZoneInfo.FindSystemTimeZoneById("Pacific ...
10
votes
3answers
2k views
How to do timezones? In asp.net mvc
on my site I need to know what timezone people are from to display messages to them at the right times.
So I am not too sure what to be searching for a tutorial how to do this.
So what I am planning ...
10
votes
4answers
15k views
Convert UTC NSDate to local Timezone Objective-C
Does anyone know how to convert a UTC NSDate to local timezone NSDate in Objective C?
10
votes
6answers
14k views
How to get Time Zone through IP Address in PHP
I want to get time zone through IP Address in PHP. Actually i have an application which will run at the client machine. I have IP address of client machine. But not able to get the time zone for each ...
10
votes
5answers
11k views
How do I use timezones with a datetime object in python?
How do I properly represent a different timezone in my timezone? The below example only works because I know that EDT is one hour ahead of me, so I can uncomment the subtraction of myTimeZone()
...
9
votes
7answers
569 views
How can a Windows program temporarily change its time zone?
I've written a function to return the time_t value corresponding to midnight on a given day. When there is no midnight for a given day, it returns the earliest time available; that situation can ...
9
votes
4answers
2k views
Persisting Joda DateTime instead of Java Date in Hibernate
My entities currently contain java Date properties. I'm starting to use Joda Time for date manipulation and calculations quite frequently. This means that I'm constantly having to convert my Dates ...
9
votes
4answers
436 views
how do you deal with timezone issues?
For a scheduling system, what's the best way to save the timezone of client/event in a central server database coming from multiple sources mobile,web,client app.
How do you store the dates? ...
9
votes
3answers
975 views
Credit card expiration dates in which timezone?
We know from Credit card expiration dates - Inclusive or exclusive? that credit card expires on the last day. However, in which time zone?
9
votes
5answers
2k views
Time zone conversion C API on Linux, anyone?
I'm looking for something that I presumed would be very simple - given local Unix time in a specific time zone (specified as a string, e.g., "America/New_York" - note that's not my local time), get ...
9
votes
6answers
5k views
Django with system timezone setting vs user's individual timezones
How well does Django handle the case of different timezones for each user? Ideally I would like to run the server in the UTC timezone (eg, in settings.py set TIME_ZONE="UTC") so all datetimes were ...
9
votes
2answers
7k views
Set current Time.zone in Rails?
Javascript on my page saves client UTC offset to the cookie.
How do I use this cookie to create a TimeZone and assign it to Time.zone ?
I need something like:
before_filter :set_time_zone
def ...
9
votes
4answers
14k views
How do i get the gmt time in php
I have a server which is set to EST and all records in the db are set to EST. i would like to know how to set it to gmt? I want to put a time zone option to my users.
9
votes
1answer
877 views
How to handle timezones in CFML?
How to handle timezones in CFML? So far all apps I've wrote just use the default timezone of the CF server and/or SQL server.
What do you guys usually do? Do you store all dates in GMT with ...
9
votes
4answers
6k views
Converting Between Local Times and GMT/UTC in C/C++
What's the best way to convert datetimes between local time and UTC in C/C++?
By "datetime", I mean some time representation that contains date and time-of-day. I'll be happy with time_t, struct tm, ...
9
votes
4answers
731 views
What is the common practice with regards to differentiating between UTC and GMT?
I finally found out the difference between UTC and GMT by making the effort to look it up on Wikipedia today. Technically speaking it appears that GMT != UTC because you do not know if it is UTC or ...
9
votes
2answers
12k views
How can I recognize the Zulu time zone in Java DateUtils.parseDate?
I have dates in the format 2008-12-23T00:00:00Z. This look a lot like a ISO 8601 format with a Zulu (UTC) timezone. I though the following code would parse it (using commons-lang) :
String pattern = ...
9
votes
1answer
3k views
I need a mapping list of cities to timezones- best way to get it?
I have a list of cities, states/provinces, and countries and I need to find their respective timezones easily. Specifically, I need to know which Windows TimeZone they map to. So far this has been a ...
9
votes
1answer
12k views
How to convert UTC time to Time in any other time zone in C#
I am working in C#.net - .Net fx is 2.0 which doesnot support converting between different time zones. I have wrote a scheduler based on UTC but it is giving errors of 1 hour in the DTS periods for ...
9
votes
4answers
11k views
Web service - current time zone for a city?
Is there a web service of some sort (or any other way) to pull a current time zone settings for a (US) city. For the parts of the country that don't follow the Daylight Saving Time and basically jump ...
8
votes
3answers
272 views
Timezone issue in Android
I have time in milliseconds and I am displaying that time in my application in "MM/dd/yyyy HH:mm:ss" format, it is working fine.
Problem: if I change the timezone in android device it display ...
8
votes
2answers
510 views
How to make an unaware datetime timezone aware in python
What I need to do
I have a timezone-unaware datetime object, to which I need to add a time zone in order to be able to compare it with other timezone-aware datetime objects. I do not want to convert ...
8
votes
3answers
208 views
Strange Java Timezone Date Conversion Problem
I want to convert ms-since-1970-timestamp to a date with timezone (Germany).
Here are two variants of code which worked - at least, I remember using it and it worked:
import ...
8
votes
2answers
7k views
Timezone with rails 3
I have pretty common issue but for some reason i have tried all the suggestions on the web and none seem to work.
I have set the Timezone in config to 'EST'
config.time_zone = 'Eastern Time (US ...
8
votes
3answers
656 views
Creating a user-friendly list of timezones for user-preferences
Below is a snippet of the list of timezones returned from java (I've printed the timezone offset, timezone ID, and long name, using JodaTime).
(GMT-10:00) HST, Hawaii Standard Time
(GMT-10:00) ...
8
votes
1answer
2k views
How to use TimeZoneInfo to get local time during Daylight Savings Time?
I'm trying to use DateTimeOffset to convey a specific moment in time across any time zone. I can't figure out how to use TimeZoneInfo to deal with daylight savings time.
var dt = DateTime.UtcNow;
...
8
votes
7answers
7k views
Mapping US zip code to time zone
When users register with our app, we are able to infer their zip code when we validate them against a national database. What would be the best way to determine a good potential guess of their time ...
8
votes
3answers
2k views
TimeZone.setDefault changes in JDK6
I just noticed that JDK 6 has a different approach to setting a default TimeZone than JDK5.
Previously the new default would be stored in a thread-local variable. With JDK6 (I just reviewed ...
8
votes
4answers
4k views
How do you detect a website visitor's country (Specifically, US or not)?
I need to show different links for US and non-US visitors to my site. This is for convenience only, so I am not looking for a super-high degree of accuracy, and security or spoofing are not a ...