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

前端 未结 6 1657
滥情空心
滥情空心 2020-11-28 01:50

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.

6条回答
  •  心在旅途
    2020-11-28 02:54

    Why don't you create a script that does the scraping with cURL and simple html dom parser and just grab the value you need from that page? These tools work with PHP, but other tools exist for exist for any language you need.

提交回复
热议问题