Isn't there a convenient way of getting from a java.util.Date to a XMLGregorianCalendar?
|
feedback
|
| |||
|
feedback
|
|
For those that might end up here looking for the oposite convertion (XMLGregorianCalendar to Date):
| |||||||
feedback
|
|
Here is a method for converting from a GregorianCalendar to XMLGregorianCalendar; I'll leave the part of converting from a java.util.Date to GregorianCalendar as an exercise for you:
EDIT: Slooow :-) | |||
|
feedback
|
|
I hope my encoding here is right ;D To make it faster just use the ugly getInstance() call of GregorianCalendar instead of constructor call:
| |||
|
feedback
|
|
Just thought I'd add my solution below, since the answers above did not meet my exact needs. My Xml schema required seperate Date and Time elements, not a singe DateTime field. The standard XMLGregorianCalendar constructor used above will generate a DateTime field Note there a couple of gothca's, such as having to add one to the month (since java counts months from 0).
| |||
|
feedback
|
|
I agree that it is better to use the getInstance method, but how can the "getInstance()" be faster than the constructor method? The getInstance() method calls the method "createCalendar(TimeZone zone, Locale aLocale)" which returns a "new GregorianCalendar(zone, aLocale)"! | |||
|
feedback
|