9

I want to get the current time of the machine in GMT and presented it on custom format like this one using GWT:

 yyyyMMddHHmmss

How I can achieve that?

I've tried this, but I didn't find how can I present this local time in GMT:

Date date = new Date();
DateTimeFormat dtf = DateTimeFormat.getFormat("yyyyMMddHHmmss");
System.err.println(dtf.format(date).toString());

Also note that the Date.getTimezoneOffset() is deprecated, which I could use to subtract it from the current date and format it afterwards, but it doesn't sound like a good plan.

Lipis
  • 21,388
  • 20
  • 94
  • 121

1 Answers1

18
Date date = new Date();
DateTimeFormat dtf = DateTimeFormat.getFormat("yyyyMMddHHmmss");
Window.alert(dtf.format(date, TimeZone.createTimeZone(0)));

You need to import com.google.gwt.i18n.client.TimeZone and not java.util.TimeZone.

Chris Boesing
  • 5,239
  • 3
  • 26
  • 30