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
190 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 ...
4
votes
2answers
155 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 ...
4
votes
3answers
9k views

Force Java timezone as GMT/UTC

I need to force any time related operations to GMT/UTC, regardless the timezone set on the machine. Any convenient way to so in code? To clarify, I'm using the DB server time for all operations, but ...
2
votes
1answer
156 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
592 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 ...
1
vote
2answers
18 views

Getting the correct GMT format using DateFormat Object

If i have a File object how can i get the lastModified() date of this file in this GMT format: Mon, 23 Jun 2011 17:40:23 GMT. For example, when i call the java method lastModified() on a file and use ...
1
vote
1answer
96 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
2answers
818 views

How to use an Internet time server to get the time?

I would like to get the GMT [ Greenwich Mean Time ], and also i don't want to rely on my system date time for that. Basically, I want to use time sync server like in.pool.ntp.org [ india ] for GMT ...
1
vote
3answers
1k views

UTC vs. GMT - Java vs. .Net

In .Net UTC and GMT are not the same Difference between UTC and GMT Standard Time in .NET Is it the same with Java? Does Java has the notion that GMT has DST changes while UTC doesnt? Thanks!
1
vote
4answers
965 views

How to make Date locale-independent?

I have a db, that stores dates in OleDateTime format, in GMT timezone. I've implemented a class, extending Date in java to represent that in classic date format. But my class is locale-dependent (I'm ...
1
vote
4answers
5k views

JDBC Timestamp & Date GMT issues

I have a JDBC Date column, which if a i use getDate is get the 'date' part only 02 Oct 2009 but if i use getTimestamp i get the full 'date' 02 Oct 2009 13:56:78:890. This is excatly what i want. ...
0
votes
2answers
93 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
1answer
535 views

Get GMT Time in Java

I am trying to set Date object instance to our xml response. Schema says the element is of type - xs:DateTime. I need current time in GMT. I tired various options like, Date date = new Date(); ...
0
votes
4answers
3k views

Java - Store GMT time

My server has GMT+7, so if i move to another server has another GMT timezone, all date stored in db will incorrect? Yes Q1 is correct, how about i will store date in GMT+0 timezone and display it in ...