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

I have some Java objects that I want to transform to XML. Some of the objects has a field java.sql.Timestamp datetime and I want them formatted in XML as datetimes is usually formatted in XML.

From what I know datetimes in XML should contain a T or a Z for UTC time. But if I use XStream the java.sql.Timestamp is formatted as <datetime>2011-04-20 14:24:29.334</datetime> in the XML.

Is there any way I can format Timestamps in a XML-way using XStream?

share|improve this question

1 Answer

up vote 1 down vote accepted

You can do it using Custom Converter

share|improve this answer
Thanks! And org.joda.time.DateTime fixed all other formatting of the Timestamp. – Jonas Apr 21 '11 at 7:37
Glad to know . Thanks for sharing. :) – Jigar Joshi Apr 21 '11 at 8: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.