Home » Jsoup example: print title of an url

Jsoup example: print title of an url

by Online Tutorials Library

Jsoup Example: print title of an url

Let’s see the jsoup example to print title of an url e.g. www.tutoraspire.com. By the help of Jsoup.connect() method, we will connect with the URL. The get() method returns the reference of Document object. The document class provides title() method that returns the title of the document.

Output:

title is: tutoraspire - A Solution of all Technology 

You may also like