I am trying to parse HTML in android from a webpage, and since the webpage it not well formed, I get SAXException.
SAXException
Is there a way to parse HTML in Andro
String tmpHtml = "a whole bunch of html stuff"; String htmlTextStr = Html.fromHtml(tmpHtml).toString();