Is there a nice and easy way to convert a Java Date into XML date string format and vice versa?
Cheers,
Andez
|
|
I am guessing here that by "XML Date Format" you mean something like "2010-11-04T19:14Z". It is actually ISO 8601 format. You can convert it using SimpleDateFormat, as others suggested, FastDateFormat or using Joda Time which was I believe especially created for this purpose. |
|||||
|
|
As already suggested use SimpleDateFormat.
My guess is that the format/pattern that your looking for is |
|||
|
|
|
You can parse and format dates to and from any format using SimpleDateFormat |
|||
|
|
|
Using Joda Time you would do the following:
Thread safe, immutable and simple. |
|||
|
|
|
Just by using SimpleDateFormat in java we can do this... SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssZ"); |
|||
|
|
|
Without knowing exactly what format you need, the generic response is: you're going to want DateFormat or SimpleDateFormat. There is a nice tutorial on both here. |
|||
|
|