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

I code a lot of parsers. Up till now, I was using HtmlUnit headless browser for parsing and browser automation.

Now, I want to separate both the tasks.

As 80% of my work involves just parsing, I want to use a light html parser because it takes much time in HtmlUnit to first load a page, then get the source and then parse it.

I want to know which html parser is best. The parser would be better if it is close to HtmlUnit parser.

==============================Edited=========================================

By best, I want at least the following features:

  1. Speed
  2. Ease to locate any HtmlElement by its "id" or "name" or "tag type".

It would be ok for me if it doesn't clean the dirty html code. I don't need to clean any html source. I just need an easiest way to move across HtmlElements and harvest data from them.

share|improve this question
2  
How do you mean "best"? Do you mean speed, ease of transition from current implementation, adherence to W3C standards, something else I haven't thought of? Your question implies speed, but it also implies development transition time. Some clarification may help others in recommending good parsers that will fit your needs better. – aperkins Jan 30 '10 at 16:55
2  
Your statement 'I code a lot of parsers' doesn't seem to tally with the question. Do you mean 'I need to use html parsers a lot?' – Bedwyr Humphreys Jan 30 '10 at 17:09
2  
I think this question is specific enough to be exempt from the "not constructive" close reason. – Bill the Lizard Sep 13 '11 at 12:42
1  
Vote to re-open this please. This is specific enough and should not be closed. – AZ_ Jan 23 at 14:11

closed as not constructive by slhck, gnat, Roman C, Shikiryu, S.L. Barth Apr 16 at 9:33

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

3 Answers

up vote 21 down vote accepted

The best I've seen so far is HtmlCleaner:

HtmlCleaner is open-source HTML parser written in Java. HTML found on Web is usually dirty, ill-formed and unsuitable for further processing. For any serious consumption of such documents, it is necessary to first clean up the mess and bring the order to tags, attributes and ordinary text. For the given HTML document, HtmlCleaner reorders individual elements and produces well-formed XML. By default, it follows similar rules that the most of web browsers use in order to create Document Object Model. However, user may provide custom tag and rule set for tag filtering and balancing.

With HtmlCleaner you can locate any element using XPath.

For other html parsers see this SO question.

share|improve this answer

Self plug: I have just released a new Java HTML parser: jsoup. I mention it here because I think it will do what you are after.

Its party trick is a CSS selector syntax to find elements, e.g.:

String html = "<html><head><title>First parse</title></head>"
  + "<body><p>Parsed HTML into a doc.</p></body></html>";
Document doc = Jsoup.parse(html);
Elements links = doc.select("a");
Element head = doc.select("#head").first();

See the Selector javadoc for more info.

This is a new project, so any ideas for improvement are very welcome!

share|improve this answer
2  
Jsoup is pretty slick, man. Nice work. – JMTyler Jun 16 '10 at 5:28
2  
This thing is fantastic, and I love the CSS selector support. I barely know I'm using a Java library. :-) – William Pietri Sep 16 '10 at 0:25
2  
Please don't stop supporting this. This is exactly what we've needed to parse HTML using server-side Java! This is awesome! I built a proxy in just a couple hours that modifies all of the src and href links to make them full paths to the origin server. – jmort253 May 14 '11 at 4:04
1  
I have just taken a glance at it. I like its interface and documentation. It's easy to understand. :) – Emerald214 Aug 19 '11 at 11:14
1  
Nice job! Got jsoup up and running in less than 10 minutes. – Indrek Kõue Aug 19 '11 at 13:54
show 3 more comments

I suggest Validator.nu's parser, based on the HTML5 parsing algorithm. It is the parser used in Mozilla from 2010-05-03

share|improve this answer

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