I really can't understand this one: it looks like Android has the XMLGregorianCalendar class, because it is documented here. But if you go ahead and try to use it, that's what you get:

10-27 17:21:43.677: E/AndroidRuntime(14850): Caused by: javax.xml.datatype.DatatypeConfigurationException: Provider org.apache.xerces.jaxp.datatype.DatatypeFactoryImpl not found
10-27 17:21:43.677: E/AndroidRuntime(14850):    at javax.xml.datatype.DatatypeFactory.newInstance(DatatypeFactory.java:102)

This happens on the line:

DatatypeFactory datatype = DatatypeFactory.newInstance();

And guess what, it should not behave like this, as documented on the official Android Javadoc.

This looks like one of the not-so-smart things about Android. Why would you document something that can't be used? Does anyone have a solution on this, one that maybe does not include repackaging?

link|improve this question

On which Android version does this crash? – Krylez Oct 27 '11 at 16:09
Android 2.3.3 Gingerbread on a Nexus One. – MacGyver Oct 27 '11 at 16:10
Well there goes that idea. I'll keep looking. – Krylez Oct 27 '11 at 16:39
feedback

1 Answer

up vote 2 down vote accepted

It looks like even though it's been in the API since v8, no version of Android has ever shipped with an implementation. Handy, right?

One solution is to download the Xerces2 Java implementation jar and include it on your project's build path.

Your code would be only slightly different:

DatatypeFactory datatype = DatatypeFactoryImpl.newInstance();
link|improve this answer
This solved my issue. Thank you very much! :) – MacGyver Oct 28 '11 at 8:36
1  
You're welcome. I learned something, so thank you. – Krylez Oct 28 '11 at 15:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.