Jsoup get title from HTML

Let us discuss how to get title from HTML using Jsoup API with the help of below example.

Follow the below steps:

1. Use connect(String url) method of Jsoup class which returns the connection of specified URL. 2. Use get() method of Connection class which returns Document object. 3. Use title() method of Document class to get the title. 4. Print the title.

Example:

JsoupGetTitle.java

import java.io.IOException;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
 
/**
 * This class is used get title from HTML using Jsoup.
 * @author w3spoint
 */
public class JsoupGetTitle {
  public static void main(String args[]){
    Document document;
    try {
     	//Get Document object after parsing the html from given url.
	document = Jsoup.connect("https://www.w3schools.blog/").get();
 
	//Get title from document object.
	String title = document.title();
 
	//Print title.
	System.out.println("Title: " + title);
    } catch (IOException e) {
	e.printStackTrace();
    }		
  }
}

Output:

Title: W3spoint | Easy learning with example program codes

Download this example.   Next Topic: Jsoup get links from HTML example. Previous Topic: Jsoup HTML parsing from URL example.

 

Please follow and like us:
Content Protection by DMCA.com