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

前端 未结 6 1656
滥情空心
滥情空心 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:45

    Why don't you just write

    int start=data.indexOf("Description");

    After that take the required substring.

提交回复
热议问题