I understand that java Date is timezoneless and trying to set different timezone on Java Calendar wouldn't convert date to an appropriate Time Zone. So I have tried following code

 public static String DATE_FORMAT="dd MMM yyyy hh:mm:ss";
 public static String CURRENT_DATE_STRING ="31 October 2011 14:19:56 GMT";
 DateFormat dateFormat =  new SimpleDateFormat(DATE_FORMAT);
 dateFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
 System.out.println(dateFormat.parseObject(CURRENT_DATE_STRING));

but it outputs wrong date Mon Oct 31 16:19:56 when it must be 12:19:56?

link|improve this question

you are not showing the whole code. Where is the time outputted? – Bozho Oct 31 '11 at 12:35
System.out.println(dateFormat.parseObject(CURRENT_DATE_STRING)); – IgorDiy Oct 31 '11 at 12:36
I don't believe it messes up the minutes with.. 8 – Bozho Oct 31 '11 at 12:39
Sorry, my mistake – IgorDiy Oct 31 '11 at 12:40
What's your local timezone? – Emmanuel Bourg Oct 31 '11 at 12:46
show 3 more comments
feedback

3 Answers

up vote 2 down vote accepted

The main issue here is your date format string is using hh (12-hour clock) instead of HH (24-hour)

Secondly, your date format should specify that your date string contains the timezone. (Alternatively you could uncomment the commented line, to tell it the correct timezone).

Thirdly, you should use a DateFormat to output the time to screen aswell...

Finally, UTC = GMT, so the UTC time is also 14:19:56

(GMT, 'British Winter Time', is the same as UTC, whereas BST is one hour ahead)

public class DateFormatTest {
    public static String DATE_FORMAT="dd MMM yyyy HH:mm:ss z";
     public static String CURRENT_DATE_STRING ="31 October 2011 14:19:56 GMT";

    public static void main(String[] args) throws ParseException {
         DateFormat dateFormat =  new SimpleDateFormat(DATE_FORMAT);
         //dateFormat.setTimeZone(TimeZone.getTimeZone("GMT"));
         Date d= dateFormat.parse(CURRENT_DATE_STRING);
         dateFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
         System.out.println(dateFormat.format(d));
    }
}

Output: 31 Oct 2011 14:19:56 UTC

HTH

link|improve this answer
feedback

Use Joda Time. It's recommended by many StackOverflow users and is well documented with examples on timezone conversion.

Good luck!

link|improve this answer
feedback

What's the whole output? Date.toString() should print time zone. Maybe it's not in UTC in your case.

link|improve this answer
Yes it isn't in UTC, it is EEST. But the time must be right – IgorDiy Oct 31 '11 at 12:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.