Tagged Questions

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?
5
votes
7answers
191 views

Java time in GMT

I have a Grails application with the following code: Date now = Calendar.getInstance().getTime() //Also tried new Date() println "now: " + now When I do this, I get now: Thu Aug 18 12:47:09 CDT ...
5
votes
6answers
446 views

can 2 timezone be for 1 city?

I want to know if there can be 2 or more GMT timezones for one city or state. I know there can be more then one GMT timezone for a country, but not sure if it's for state and city too. Share your ...
4
votes
4answers
97 views

C# - Formatting current time

In C#, how can I get the current DateTime in the following format? 2011-08-10T21:36:01.6327538Z
4
votes
2answers
156 views

Convert GMT DateTime String

I am pretty new to Java and I am a little stuck with using SimpleDateFormat and Calendar. I have a Date-Object and want to extract a GMT datestring like yyyy-MM-dd HH:mm:ss. I live in Germany and at ...
2
votes
3answers
63 views

how to know the local date without javascript

Hello I'm coding a chatting box and I'd like to stamp the current local time of the user next to its posted message. So I could use javascript : var date = new Date(); and send a string form of the ...
2
votes
1answer
157 views

“Java Date() returns date in UTC” - what does it actually mean?

My question might be trivial but I'm just looking for clarifications. I read somewhere in SO that Java's Date() is actually always in UTC time, how come when I create a Date() object and print it ...
2
votes
2answers
595 views

How to get the current time in GMT? [closed]

Possible Duplicate: How can I get the current date and time in UTC or GMT in Java? I want to get the current timestamp in GMT; any ideas how to do that? i managed to get a string in gmt ...
2
votes
1answer
904 views

How to determine UTC offset from server timezone?

I've found many examples about UTC tables and php date methods to convert it, but I still miss a simple way after got server date, to converting it into an user timezone selection on my web page. On ...
1
vote
1answer
47 views

Difference between GMT and UTC in Android

The function System.currentTimeMillis() returns the number of milliseconds since January 1, 1970 00:00:00 UTC. The function Date.getTime() returns the number of milliseconds since January 1, 1970 GMT ...
1
vote
1answer
98 views

Debug simple java code related to Calendar Date GMT

import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; import java.util.TimeZone; public class Test { public static void ...
1
vote
1answer
179 views

how to make datetime class to work with DST and without DST in php?

I have wrote the code where i am using DateTime class which also converts dst following countries time into GMT format. But i want the functionality where i need the DateTime class should work on ...
0
votes
3answers
63 views

datetime , time python

I want to convert a datestring to date in UTC . In addition need to compare this date with current time in UTC and get the difference in milliseconds in python. I looked at python timedelta ...
0
votes
1answer
37 views

Select Now() as CurrentDateTime mysql time zone

How can I use the SELECT Now() As CurrentDateTime for GMT, as it displays the tome as GMT-5. Basically, when the time is: 2011-11-19 09:46:37 in GMT, it displays it as: `2011-11-19 04:46:37 How can ...
0
votes
1answer
66 views

EST/EDT to GMT conversion and date comparison

I need to convert a given GMT date and time (YYYY-MM-DD HH:MM) into such a string YYYYMMDD representing Eastern coast date. Do you think the code below is OK? $date='2011-11-07 04:30'; $date.='-4 ...
0
votes
2answers
95 views

How can I convert milliseconds into the corresponding date right?

I have a problem with dates. I'm sure these milliseconds 1317322560000, represent the date of Thu Sep 29 18:56:00 GMT+02:00 2011 in Italy. But using the Calendar class the date is Thu Sep 29 ...
0
votes
2answers
172 views

How to convert datetime to GMT in php

Alright, so i'm not sure if im converting user input time to GMT properly. I will be having users across several timezones entering "events" and they will have to be able to see "how long untill" or ...
0
votes
1answer
42 views

Synchronizing GMT and Local Times

I'm pulling data from two different sources, both have timestamps. One of the sources uses GMT, and the other uses the time local to their server. I display the information from both of these ...
0
votes
1answer
271 views

Get last Sunday within a range of two dates (GMT, DST)

I'm trying to get the last Sunday between two week numbers - in order to avoid DST. IN ORDER WORDS: Start a range of time - from the last Sunday in March to the last Sunday in October. This is my ...
0
votes
2answers
427 views

how to convert php date formats to GMT and vice versa?

i am new to php. i want to write a function where i need user to input date in any date format including DST,into GMT format and again later back into the original entered format.please any body help ...
0
votes
1answer
198 views

Absolute GMT date on iPhone

I'm trying to get a date that represents noon GMT for a recurring local notification. I need this local notification to fire at the exact moment to anyone using the app. So far, I'm trying this: ...
0
votes
3answers
126 views

gmt or without gmt

this might be stupid question, but ill ask anyway. do i really need to implement gmt on site to get proper timestamp on a post? well im building a site like twitter. my feeds are working fine and ...