Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The abundance of HTML parsers to choose from (and stick with) is mind boggling:

http://java-source.net/open-source/html-parsers

How do I choose one that best suits the following requirements:

  1. Mature (fewer bugs than the rest)
  2. Live and breathing (i.e. being maintained)
  3. Fast and resource-efficient (intended to run on Android)

Based on your experience, which HTML parser would you recommend (for meeting the above requirements) and why?

share|improve this question
2  
This is not Android specific, but may be useful: stackoverflow.com/questions/4501681/… – George Bailey Mar 3 '11 at 16:48
@George Bailey Thanks. This is a great resource. You correctly understood that I am looking for the optimal solution for Android. i.e. Jsoup may be great on a desktop/server but perhaps a different package would be better for a mobile phone. – Regex Rookie Mar 3 '11 at 16:53
Update: Thanks to @George Bailey's link I found another resource: stackoverflow.com/questions/3152138/… – Regex Rookie Mar 3 '11 at 17:20
1  
Did you find any proper html parser optimal for Android? I am currently using JSoup. Works great but I want to know if it can be optimized futher. – Enigma Dec 8 '11 at 7:08
@Enigma AFAIAC Jsoup is the best. It's possible that I am not aware of something that's better, but project productivity dictates that I cannot constantly switch from one library to another... :) – Regex Rookie Jan 9 '12 at 14:12

1 Answer

up vote 22 down vote accepted

Well, I found the answer, which was given by @BalusC on a different thread:

  1. If you just want to use a XML based tool to traverse it: JTidy.
  2. If you like to unit test the HTML: HtmlUnit
  3. If you like to extract specific data from the HTML: Jsoup

Thank you @BalusC.

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.