Thursday, January 19, 2017

Parse HTML in Android

Answer


I am trying to parse HTML in android from a webpage, and since the webpage it not well formed, I get SAXException.



Is there a way to parse HTML in Android?

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...