Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

HTTP Last-Modified header contains date in following format (example):
Wed, 09 Apr 2008 23:55:38 GMT
What is the easiest way to parse java.util.Date from this string?

share|improve this question

4 Answers

up vote 23 down vote accepted

This should be pretty close

String dateString = "Wed, 09 Apr 2008 23:55:38 GMT";
SimpleDateFormat format = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss zzz");
Date d = format.parse(dateString);

SimpleDateFormat

share|improve this answer
3  
+1 almost correct, the hh should be HH, as the hours are 0-23. – notnoop Dec 18 '09 at 19:24
4  
If you're doing this often make sure you reuse the SimpleDateFormat object (they're amazingly expensive to construct) and synchronize on it when calling parse (they're not threadsafe). – Ry4an Dec 18 '09 at 20:08
2  
The standard allows not one format, but three formats. w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.3 – Sridhar Ratnakumar Jan 20 '10 at 21:34
3  
If you are going to compare that Date object to a time stamp in your application, remember that the header only include whole seconds and you should discard the 3 least significant digits to be able to compare properly. So do (TS/1000)*1000 == headerTS if needed. – PålOliver May 12 '11 at 11:48
3  
Anyone getting a "ParseException: Unparseable date"? – koppor Apr 12 '12 at 17:06
show 5 more comments

DateUtil.parseDate(dateString) from apache http-components

(legacy: DateUtil.parseDate(dateString) (from apache commons-httpclient))

It has the correct format defined as a Constant, which is guarnateed to be compliant with the protocol.

share|improve this answer
+1 beat me to it :) – ZoogieZork Dec 18 '09 at 19:37
1  
BTW, commons-httpclient has been superseded by org.apache.httpcomponents:httpclient. – John Glassmyer Feb 20 '12 at 11:42
1  
The class is now org.apache.http.impl.cookie.DateUtils hc.apache.org/httpcomponents-client-ga/httpclient/apidocs/org/… – daveb Feb 22 at 10:07

RFC 2616 defines three different date formats that a conforming client must understand.

The Apache HttpClient provides a DateUtil that complies with the standard: http://hc.apache.org/httpcomponents-client/httpclient/apidocs/org/apache/http/impl/cookie/DateUtils.html

Date date = DateUtil.parseDate( headerValue );

share|improve this answer
   
Just a minor point in case people get confused: the date format RFC is 1123, which is referred to from RFC 2616 here: w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.3.1 – daveb Feb 22 at 10:04
"the date format RFC is 1123" which itself refers to RFC 822 – Raedwald May 7 at 15:39

If you're using URLConnections, there is already a handy method.

See URLConnection#getLastModified

This method parses the date string and returns a milliseconds value. Then you can happily create a Date with that value.

share|improve this answer

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.