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?
|
|
||||
|
|
|
This should be pretty close
|
|||||||||||||||||||||
|
|
(legacy: It has the correct format defined as a Constant, which is guarnateed to be compliant with the protocol. |
|||||||||||
|
|
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
|
|||||||
|
|
If you're using See URLConnection#getLastModified This method parses the date string and returns a milliseconds value. Then you can happily create a |
|||
|
|