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.13.1.jar download
jsoup-1.13.1.pom download
jsoup-1.13.1-sources.jar download
Apache Maven
<dependency>
  <groupId>org.jsoup</groupId>
  <artifactId>jsoup</artifactId>
  <version>1.13.1</version>
</dependency>
Gradle Groovy
implementation 'org.jsoup:jsoup:1.13.1'
Gradle Kotlin
implementation("org.jsoup:jsoup:1.13.1")
Scala SBT
libraryDependencies += "org.jsoup" % "jsoup" % "1.13.1"
Groovy Grape
@Grapes(
  @Grab(group='org.jsoup', module='jsoup', version='1.13.1')
)
Apache Ivy
<dependency org="org.jsoup" name="jsoup" rev="1.13.1" />
Leiningen
[org.jsoup/jsoup "1.13.1"]
Apache Buildr
'org.jsoup:jsoup:jar:1.13.1'