David Brown
David Brown

Reputation: 4823

Html Parsing in android

I have a Html Response for my application that I need to parse ultimately. Is there any way to perform the Html Parsing in android application. I have searched net a lot but couldn't found anything I was looking for.

Can anyone have a clue to do the same?

Thanks, david

Upvotes: 0

Views: 3942

Answers (2)

Pat
Pat

Reputation: 5911

We are using both jericho and htmlcleaner in our project. We have made some changes (big and small) to htmlcleaner. And we have added better error handling to jericho.

Our Jericho and htmlcleaner versions are available on github.

(In answer to why we forked: we needed some fixes that the original developers were unwilling or unavailable to incorporate into their version. This was not a willing fork. )

Upvotes: 2

100rabh
100rabh

Reputation: 6186

david do check HTML class

Html.fromHtml("<a href=http://saurabh-nigam.blogspot.com/>myblogt</a>")

And also this post 'html parsers for android' links some parsers

Upvotes: 2

Related Questions