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 jsoup Discussions.
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.