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