Download jsoup
jsoup is available as a downloadable .jar java library.
-
jsoup-0.3.1.jarcore library -
jsoup-0.3.1-sources.jaroptional sources jar -
jsoup-0.3.1-javadoc.jaroptional javadoc jar
Maven
If you use Maven to manage the dependencies in your Java project (and you should!), you do not need to download; just place this into your POM's <dependencies> section:
<dependency>
<!-- jsoup HTML library @ http://jsoup.org/ -->
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>0.3.1</version>
</dependency>
Dependencies
jsoup depends on the Apache Commons Lang library v2.4 which must be included in your classpath. This is taken care of for you if you're using Maven.