What is the fastest way to scrape HTML webpage in Android?

Posted by kunjaan on Stack Overflow See other posts from Stack Overflow or by kunjaan
Published on 2010-06-04T02:33:13Z Indexed on 2010/06/15 23:52 UTC
Read the original article Hit count: 199

Filed under:
|
|
|
|

I need to extract information from an unstructured web page in Android. The information I want is embedded in a table that doesn't have an id.

<table> 
<tr><td>Description</td><td></td><td>I want this field next to the description cell</td></tr> 
</table>

Should I use

  • Pattern Matching?
  • Use BufferedReader to extract the information?

Or are there faster way to get that information?

© Stack Overflow or respective owner

Related posts about html

Related posts about android