j

jsoup

jsoup is a Java library for working with real-world HTML. It provides a very convenient API for fetching URLs and extracting and manipulating data, using the best of HTML5 DOM methods and CSS selectors. jsoup implements the WHATWG HTML5 specification, and parses HTML to the same DOM as modern browsers do.
https://jsoup.org/
The MIT License
Jonathan Hedley
Jonathan Hedley
Files download
File Operation
jsoup-1.16.1.jar download
jsoup-1.16.1.pom download
jsoup-1.16.1-sources.jar download
Apache Maven
<dependency>
  <groupId>org.jsoup</groupId>
  <artifactId>jsoup</artifactId>
  <version>1.16.1</version>
</dependency>
Gradle Groovy
implementation 'org.jsoup:jsoup:1.16.1'
Gradle Kotlin
implementation("org.jsoup:jsoup:1.16.1")
Scala SBT
libraryDependencies += "org.jsoup" % "jsoup" % "1.16.1"
Groovy Grape
@Grapes(
  @Grab(group='org.jsoup', module='jsoup', version='1.16.1')
)
Apache Ivy
<dependency org="org.jsoup" name="jsoup" rev="1.16.1" />
Leiningen
[org.jsoup/jsoup "1.16.1"]
Apache Buildr
'org.jsoup:jsoup:jar:1.16.1'