Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android JSoup Example

Tags:

android

jsoup

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 over google trying to get it to work but cant. If anyone could help I'd really appreciate it.

like image 505
dbaby7 Avatar asked Mar 02 '11 21:03

dbaby7


1 Answers

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());
}
like image 135
Nicolas Girardin Avatar answered Nov 02 '22 23:11

Nicolas Girardin