Is there some SAX serializer similar to Android’s XmlSeializer that can be used both in Java and Android? I have to use one library in Java project and in Android project, and I need some way to serialize XML from it. I use SAX serializing so tools like dom4j don’t fit (as I can understand).
Thank you for help.
Yes, I recommend the XMLPullParser
You can use it to parse and serialize XML. I find it to be faster too.
Here is the Android doc for it.
Serializer doc