How to parse non well-formed HTML in android ?

I tried to use XOM and TagSoup, but i get the following error when creating the Builder:

11-26 20:42:39.294: ERROR/dalvikvm(1298): Could not find method org.apache.xerces.impl.Version.getVersion, referenced from method nu.xom.Builder.

Must i install Xerces to use XOM or can i use tagsoup without XOM ?

link|improve this question

70% accept rate
feedback

2 Answers

up vote 2 down vote accepted

You might find JTidy (http://jtidy.sourceforge.net/) - a port of HTMLTidy to be sufficiently lightweight. It outputs XHTML on request

link|improve this answer
Glad it is useful – peter.murray.rust Nov 28 '09 at 12:44
feedback

XOM may require Xerces to be in the classpath - it may depend on the version of Java. Currently we use

xercesImpl-2.8.0.jar
link|improve this answer
1  
I think Xerces itself is too heavy to work on android... I don't understand why i don't find information about such a basic thing as html scraping for android... – Kristof Nov 26 '09 at 22:14
feedback

Your Answer

 
or
required, but never shown

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