vote up 0 vote down star

Is there a nice parser/library which is able to read an HTML document into a DOM tree usinf Java? I'd like to use the standard DOM/Xpath API that Java provides.

But all libraries I can find only seem have custom APIs to solve this task. Furthermore the conversion HTML to XML-DOM seems unsupported by the most of the available parsers.

Any ideas or experience with a good HTML DOM parser?

Thanks in advance

flag

3 Answers

vote up 2 vote down check

JTidy, either by processing the stream to XHTML then using your favourite DOM implementation to re-parse, or using parseDOM if the limited DOM imp that gives you is enough.

Alternatively Neko.

link|flag
Neko + Xerces do the job quite well. Thanks to all answering – Stefan Teitge Jan 19 at 14:41
Beware of JTidy. It has a memory leak bug. If you run it in a production system it will eventually blow up - StackOverflowError and eventually OutOfMemoryError. That said, it is wonderfully good at fixing broken html so that you can feed it into a dom parser. – Joel Nov 13 at 10:14
vote up 1 vote down

Apache's Xerces2 parser should do what you want.

link|flag
vote up 1 vote down

TagSoup can do what you want.

link|flag

Your Answer

Get an OpenID
or

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