Jsoup get title from HTML example

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 javawithease
*/

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("http://tutorialspointexamples.com/").get();
 
//Get title from document object.
String title = document.title();
 
//Print title.
System.out.println("Title: " + title);
} catch (IOException e) {
e.printStackTrace();
}
}
}

Output:

Title: Javawithease | Easy and step by step learning of java.

No comments: