Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my Android app I need to extract data from a xml file (the file will have less than 2000 lines). I have no experience with XML parsing, so I don't know what the best approach is. DOM parser is perhaps not a good option, because I am on a mobile device. On the other hand with SAX I would probably end with more complicated code. What would you recommend?

share|improve this question
Possible duplicate of: stackoverflow.com/questions/1351218/… – Adrian Petrescu Oct 6 '10 at 13:36

4 Answers

up vote 1 down vote accepted

Depends on exactly what you want to extract, but for small enough documents I don't think DOM is too bad, and it comes bundled with JDK (I think on android too). For ultimate convenience I would use JAXB, to bind to Java beans; it uses SAX parser by default and is more efficient than using DOM trees (as well as easier to use).

Otherwise I would look into pull parsers; android ships with xpp which is ok, but Woodstox is my favorite.

share|improve this answer
I am doiing a journey planner app and I need to parse jurneys from the xml I receive from server. – fhucho Oct 5 '10 at 21:32
2  
JAXB is not an option in Android, currently. – Cheryl Simon Oct 5 '10 at 21:38
I will use DOM for now. When everything's working and it will be slow, I'll rewrite the code to SAX or pull parser. – fhucho Oct 6 '10 at 20:17
Too bad if JAXB can't be made to work -- I know there used to be issues with API blacklisting. As to pull parser; last thing to suggest is having a look at StaxMate (staxmate.codehaus.org), which IMO makes them much nicer to use. – StaxMan Oct 6 '10 at 21:03

If you are familiar with XPath, that is an option. I don't know if it would give you better performance compared to a parser.

For parsers, I would recommend going with the SAX parser. It is usually pretty easy to work with. If you extend the DefaultHandler, there are a bunch of functions which you can override and leverage for your purposes. Some include:

void startElement() - called for each start tag, function call also passes in attributes as an argument

void characters() - called for the content within a tag

void endElement() - called for each end/closing tag

See the API reference for additional details.

share|improve this answer

There are 3 options for parsing XML on Android, by default, DOM, SAX and PullParser. There is no right answer as to which is best to use, it depends on your app. You can find details on all them here though.

If its something thats going to happen a lot, probably worth it to use a SAX or pull parser to be more efficient.

share|improve this answer

As mentioned on another question similar to this one, there's a JAXB-like implementation that has been stripped down and plays well with Android. It's called Simple and you can find it here: http://simple.sourceforge.net/

share|improve this answer

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.