Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have dates in the format 2008-12-23T00:00:00Z. This look a lot like a ISO 8601 format with a Zulu (UTC) timezone. I though the following code would parse it (using commons-lang) :

String pattern = DateFormatUtils.ISO_DATETIME_TIME_ZONE_FORMAT.getPattern();
Date d = DateUtils.parseDate(dateToParse, new String[] { pattern });

If I take the same pattern (yyyy-MM-dd'T'HH:mm:ssZZ) but remove the timezone, it works.

Do you know how I can recognize the Zulu timezone ? I have access only to Java 1.4 and Jakarta commons-lang. No Joda Time for me yet ...

share|improve this question

2 Answers

up vote 4 down vote accepted

Looks like a bug in commons-lang's FastDateFormat. Tell them about it, and you should get a fix eventually. Till then you could try to preprocess the dates and replace 'Z' with '+00'

share|improve this answer
Ok, I'll try that. I wont be able to upgrade to a new version of the commons-lang before a few years ;-) but it might help somebody else ... – Guillaume Jan 8 '09 at 15:15

I think commons-lang is using java's built-in DateFormat or SimpleDateFormat which throws a ParseException for your date. If all your input strings end with the trailing Z, you could use this:


java.text.DateFormat df = new java.text.SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'");
// explicitly set timezone of input if needed
df.setTimeZone(java.util.TimeZone.getTimeZone("Zulu"));
java.util.Date date = df.parse("2008-12-23T00:00:00Z");

share|improve this answer
5  
+1... I always have to look this crap up when I'm not using JodaTime – iandisme Aug 3 '10 at 19:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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