tags:

views:

80

answers:

2

The javax.xml.transform package is not included in the Android SDK, so how to write a dom doc to a file?

A: 

Could you use the pull parser as outlined in this article?

Petri Pellinen
+1  A: 

If you can't decide which to use, note that SAX is the fastest way to work with XML, DOM being the slowest.

poke