Install Jsoup
To run any jsoup example, you need to install jsoup. The current version of jsoup is 1.8.1 till 28th november 2014. There are two ways to install jsoup:
By maven pom.xml
By jsoup.jar file.
1) By maven pom.xml file
Currently maven is widely used in java development. So I will recommend you to use maven for developing jsoup application.
To install jsoup using maven, add given dependency in pom.xml file.
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.8.1</version>
</dependency>
2) By jsoup.jar file
If you are not using maven framework, you can download the jsoup.jar file.
Download jsoup.jar file
Now you need to set classpath of jsoup.jar file. Write following command on console.
set classpath=jsoup-1.8.1.jar;.;%classpath%
Next Topic
Jsoup API