tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Tools and Libs > Jsoup > Selection Example1

Selection Example1 

Jsoup is an open source java library for parsing and manipulating HTML with ease. Get the latest binaries from http://jsoup.org/. This requires the library jsoup-1.6.1.jar to be in classpath. The following example shows selecting all anchor elements and anchor with a specific id.

File Name  :  
/JSOUP001/config/html/Simple.html 
01<html>
02<head>
03<title>BE THE CODER</title>
04<script type="text/javascript" src="jQuery.js"></script>
05<link rel="shortcut icon" href="http://bethecoder.com/favicon.ico">
06<link rel="apple-touch-icon" href="http://bethecoder.com/apple-touch-icon.png">
07<script type="text/javascript" src="Tooltip.js"></script>
08</head>
09<body>
10    <div id="notify-container">Notify Content</div>
11    <div id="overlay-header">Overlay Header Content</div>
12    <div id="custom-header">Custom Header Content</div>
13     
14    <div class="container">
15     Container Data Content <a id="nav-cont" href="/content">AAA</a> BBB CCC DDDD
16    </div>
17     
18    <div class="nav mainnavs">
19        <ul>
20            <li class="youarehere"><a id="nav-questions" href="/questions">Questions</a></li>
21            <li><a id="nav-tags" href="/tags">Tags</a></li>
22            <li><a id="nav-users" href="/users">Users</a></li>
23        </ul>
24    </div>
25    <div id="footer-one">Custom Footer Content1</div>
26    <div id="footer-two">Custom Footer Content2</div>
27</body>
28</html>

File Name  :  
com/bethecoder/tutorials/jsoup/tests/SelectTest.java 
Author  :  Sudhakar KV
Email  :  kvenkatasudhakar@gmail.com
   
package com.bethecoder.tutorials.jsoup.tests;

import java.io.IOException;
import java.io.InputStream;

import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;

public class SelectTest {

  /**
   @param args
   @throws IOException 
   */
  public static void main(String[] argsthrows IOException {
    InputStream ins = SelectTest.class.
        getClassLoader().getResourceAsStream("Simple.html");
    
    Document doc = Jsoup.parse(ins, "UTF-8""btc.com");
    System.out.println(doc.select("a").toString());    //All anchors
    
    System.out.println();  //Anchor with id = nav-users
    System.out.println(doc.select("a[id=nav-users]").toString());   
  }

}
   

It gives the following output,
File Name  :  OUTPUT
1<a id="nav-cont" href="/content">AAA</a>
2<a id="nav-questions" href="/questions">Questions</a>
3<a id="nav-tags" href="/tags">Tags</a>
4<a id="nav-users" href="/users">Users</a>
5 
6 
7<a id="nav-users" href="/users">Users</a>



 
  


  
bl  br