up vote 12 down vote favorite
10
share [g+] share [fb]

What HTML parsers have the following features:

  • Fast
  • Thread-safe
  • Reliable and bug-free
  • Parses HTML and XML
  • Handles erroneous HTML
  • Has a DOM implementation
  • Supports HTML4, JavaScript, and CSS tags
  • Relatively simple, object-oriented API

What parser you think is better?

Thank you.

link|improve this question

1  
what do you mean by "support HTML4, javascript and CSS" ? A parser is just that, a parser, it won't interpret your page. If you want to simulate a browser, please rephrase your question. – Valentin Rocher Jan 24 '10 at 23:37
No. Some parsers do not understand things like CSS. This is what I mean. – Shayan Jan 24 '10 at 23:41
1  
If CSS is in a <style> tag, it will be interpreted as text – Valentin Rocher Jan 24 '10 at 23:42
13  
and I want it all and I want it NOW! – Jarrod Roberson Jan 24 '10 at 23:54
feedback

6 Answers

up vote 11 down vote accepted

Check out Web Harvest. It's both a library you can use and a data extraction tool, which sounds to me that's exactly what you want to do. You create XML script files to instruct the scraper how to extract the information you need and from where. The provided GUI is very useful to quickly test the scripts.

Check out the project's samples page to see if it's a good fit for what you are trying to do.

link|improve this answer
1  
+1 for Web Harvest -- if you are trying to do page scraping it is the way to go. – jckdnk111 Jan 25 '10 at 2:34
feedback

The best known are NekoHTML and JTidy.

NekoHTML is based on Xerces, and provides a simple adaptable SAXParser which implements XMLReader JavaSE interface.

JTidy is more intented into formatting your html code into something XML-valid, but is still very useful as an XML parser, producing a DOM tree if needed.

You could have a look at this list for other alternatives.

Another choice could be to use hpricot through jRuby.

link|improve this answer
Why? which features do they have? – Shayan Jan 24 '10 at 23:33
added some details. – Valentin Rocher Jan 24 '10 at 23:36
SAX is not what I want and main purpose of JTidy is cleaning an XML. Are you sure that it does what i want better than others? – Shayan Jan 24 '10 at 23:40
what do you want exactly, then ? – Valentin Rocher Jan 24 '10 at 23:42
It should be DOM based. and I want extraction as it's main job not transformation. – Shayan Jan 24 '10 at 23:45
show 1 more comment
feedback

Validator.nu's HTML parser, definitely. It's an implementation of the HTML5 parsing algorithm, and Gecko is in the process of replacing its own HTML parser with a C++ translation of this one.

link|improve this answer
feedback

Well:

there aren't so many good HTML parsers in java as you need, but here are some alternatives: http://java-source.net/open-source/html-parsers

Very few of them support Javascript. Actually, I think you'll have to do this part on your own using Rhino (http://www.mozilla.org/rhino/).

link|improve this answer
feedback

you probably want to look at doing something like running Mozilla in headless mode. Here is a link to get you started, I am sure you can use Google to find out more information.

link|improve this answer
feedback

I think that HTML Cleaner is what you're looking for. See its announcement on TheServerSide to see how it compare to JTidy, TagSoup, NekoHtml.

link|improve this answer
But this is also for transforming into well XMLs. My main goal is extracting data from it. – Shayan Jan 24 '10 at 23:53
@Shayan So what? Doesn't it allow you to extract data from it? Doesn't it offer DOM manipulation? Doesn't it allow to parse nasty HTML? I don't get you. – Pascal Thivent Jan 25 '10 at 1:00
feedback

Your Answer

 
or
required, but never shown

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