Web scraping with Java

jsoup

Extracting the title is not difficult, and you have many options, search here on Stack Overflow for “Java HTML parsers“. One of them is Jsoup.

You can navigate the page using DOM if you know the page structure, see
http://jsoup.org/cookbook/extracting-data/dom-navigation

It’s a good library and I’ve used it in my last projects.

Leave a Comment