Home » Jsoup example: print links of an url

Jsoup example: print links of an url

by Online Tutorials Library

Jsoup Example: print links of an URL

In this example, we will print the total links of an URL. To do so, we are going to call select() method of Document class that returns the reference of Elements. The Elements class have elements that can be traversed by for-each loop. The Element class provides attr() and text() methods to return link and text of the link.

Output:

link : https://tutoraspire.com/contribute-us text : Contribute Us  link : https://tutoraspire.com/asknewquestion.jsp text : Ask Question  link : https://tutoraspire.com/login.jsp text : login  ..... 

You may also like