Download jsoup
jsoup is available as a downloadable .jar java library. The current release version is 1.3.2.
-
jsoup-1.3.2.jarcore library -
jsoup-1.3.2-sources.jaroptional sources jar -
jsoup-1.3.2-javadoc.jaroptional javadoc jar
What's new
See the 1.3.2 release announcement for the latest changes, or the changelog for full history.
Maven
If you use Maven to manage the dependencies in your Java project (and you should!), you do not need to download; just place the following into your POM's <dependencies> section:
<dependency>
<!-- jsoup HTML parser library @ http://jsoup.org/ -->
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.3.2</version>
</dependency>
Dependencies
jsoup is entirely self contained and has no dependencies. (jsoup no longer depends on Apache Commons-lang.)
jsoup runs on Java 1.5 and up.