j

jsoup

jsoup is a Java library for working with real-world HTML. It provides a very convenient API for extracting and manipulating data, using the best of DOM, CSS, and jquery-like methods. 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.10.3.jar download
jsoup-1.10.3.pom download
jsoup-1.10.3-sources.jar download
Apache Maven
<dependency>
  <groupId>org.jsoup</groupId>
  <artifactId>jsoup</artifactId>
  <version>1.10.3</version>
</dependency>
Gradle Groovy
implementation 'org.jsoup:jsoup:1.10.3'
Gradle Kotlin
implementation("org.jsoup:jsoup:1.10.3")
Scala SBT
libraryDependencies += "org.jsoup" % "jsoup" % "1.10.3"
Groovy Grape
@Grapes(
  @Grab(group='org.jsoup', module='jsoup', version='1.10.3')
)
Apache Ivy
<dependency org="org.jsoup" name="jsoup" rev="1.10.3" />
Leiningen
[org.jsoup/jsoup "1.10.3"]
Apache Buildr
'org.jsoup:jsoup:jar:1.10.3'