commit | 0a737674a52c5cda41aff7a58154d4073fcd3d6c | [log] [tgz] |
---|---|---|
author | Jonathan Hedley <[email protected]> | Thu Nov 23 11:53:40 2023 +1100 |
committer | Jonathan Hedley <[email protected]> | Thu Nov 23 11:53:40 2023 +1100 |
tree | f863166627336c368401589d51f0f5efde64d546 | |
parent | 4669e14039a976644e8fcd53bed422b11d32dfeb [diff] |
Re-specify Iterator<Attribute> type (Weird that it compiles & runs OK in editor without the seemingly redundant type, but blows up in the runner.)
jsoup is a Java library that simplifies working with real-world HTML and XML. It offers an easy-to-use API for URL fetching, data parsing, extraction, and manipulation using DOM API methods, CSS, and xpath selectors.
jsoup implements the WHATWG HTML5 specification, and parses HTML to the same DOM as modern browsers.
jsoup is designed to deal with all varieties of HTML found in the wild; from pristine and validating, to invalid tag-soup; jsoup will create a sensible parse tree.
See jsoup.org for downloads and the full API documentation.
Fetch the Wikipedia homepage, parse it to a DOM, and select the headlines from the In the News section into a list of Elements:
Document doc = Jsoup.connect("https://en.wikipedia.org/").get(); log(doc.title()); Elements newsHeadlines = doc.select("#mp-itn b a"); for (Element headline : newsHeadlines) { log("%s\n\t%s", headline.attr("title"), headline.absUrl("href")); }
jsoup is an open source project distributed under the liberal MIT license. The source code is available on GitHub.
When used in Android projects, core library desugaring with the NIO specification should be enabled to support Java 8+ features.
If you have any questions on how to use jsoup, or have ideas for future development, please get in touch via the mailing list.
If you find any issues, please file a bug after checking for duplicates.
The colophon talks about the history of and tools used to build jsoup.
jsoup is in general, stable release.