1
vote
2answers
60 views
TimeZone problem in Java
Hi
I am trying to instantiate GregorianCalendar with TimeZone GMT, but whenever I call the getTime() method, it gives me time in local TimeZone. Here is my code:
Calendar cal = new …
0
votes
1answer
11 views
How can I get the timezone of given gps coordinates on iPhone?
My question is simple. I have the GPS coordinates of a place and I need to know, in what time zone (and daylight saving settings) is on that place. Is any easy solution for this problem in objective …
1
vote
2answers
48 views
How do I get the current time in a different TimeZone in Java?
OK - I feel pretty dumb asking such a basic question, but hey.
I'm trying to get the current time in a different timezone in a Java webapp. I've tried the following obvious solution: in my servlet,
…
0
votes
2answers
47 views
Python: parsing date with timezone from an email
I am trying to retrieve date from an email. At first it's easy:
message = email.parser.Parser().parse(file)
date = message['Date']
print date
and I receive:
'Mon, 16 Nov 2009 13:32:02 +0100'
But …
0
votes
3answers
34 views
TimeZoneInfo, if a timezone changes in the world, how quickly will microsoft roll out an update
I'm just wondering what happens in the case of a time zone changing, when your product is using .net.
Is all you can do wait for Microsoft to update .net or write your own system for handling it?
…
0
votes
1answer
28 views
Specify time zone of log4j’s date
Is it possible to specify the time zone that log4j will use? I need the dates in the log file to be a different time zone than the application's. log4j's PatternLayout uses SimpleDateFormat. …
1
vote
4answers
49 views
Scheduling scripts at a different timezone
There are some programs/scripts that need to be run at specific times in a timezone different from the system timezone.
A la crontab in Perl, but one that honors a timezone and DST rules in a region …
0
votes
2answers
34 views
C# Define begin of day of a date in another timezone
Hi,
I want to define the begin of a day in another timezone with .NET/C#.
Example:
My current timezone = GMT+1
so DateTime.Today returns 19/11/2009 23:00 UTC
but actually I want to get the …
6
votes
3answers
102 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?
2
votes
4answers
78 views
How to manage timezones in a web application?
Hi, I wan't to manage the different timezones of my users in my web application, but I have no idea where to start. I have to save the local time of each user in my database?, or maybe make the …
0
votes
0answers
17 views
ICalendar parser in PHP that supports timezones
I am looking for a PHP class that can parse an ICalendar (ICS) file and correctly handle timezones.
I already created an ICS parser myself but it can only handle timezones known to PHP (like …
0
votes
1answer
15 views
What time does Google use in “Specific date range”, GMT or PST? [closed]
When you click "Show options", you can specify a particular period, but what time zone does Google use?
1
vote
3answers
63 views
Java Date, render with specific daylight mode
I have a Java Date that is from this summer during daylight savings time. For example:
Jun 01, 2009 06:00 AM PDT
My question is, how do I display this date as my local time zone and current …
2
votes
5answers
84 views
Is Java’s TimeZone thread-safe?
I wanted my application to just have one TimeZone object which will be used by many SimpleDateFormat and Calendar objects from the other places concurrently. This is to avoid having to always do …
1
vote
4answers
76 views
TimeZone by Coordinate
As the title infers I need to find a time zone (or perhaps just the UTC offset) based on a pair of coordinates. I've been searching for different solutions, and there is a couple of web services out …
