Android JSoup Example

后端 未结 1 829
后悔当初
后悔当初 2020-11-29 08:44

I was just wondering has anyone got a sample eclipse project with a working implementation of JSoup? Im trying to use it to pull information from websites and have gone all

相关标签:
1条回答
  • 2020-11-29 09:13

    JSoup is really easy to use, look at these exemples from the JSoup cookbook:here

    First, You have to connect to the webpage you want to parse using:

    Document doc = Jsoup.connect("http://example.com/").get();
    

    Then, you can select page elements using the JSoup selector syntax.

    For instance, say you want to select all the content of the div tags with the id attribute set to test, you just have to use:

    Elements divs = doc.select("div#test");

    to retrieve the divs, then you can iterate on them using:

    for (Element div : divs)
        System.out.println(div.text());
    }
    
    0 讨论(0)
提交回复
热议问题