Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8373363
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T14:39:33+00:00 2026-06-09T14:39:33+00:00

I am new to Jsoup. I am able to use select command Elements media

  • 0

I am new to Jsoup.

I am able to use select command

Elements media = doc.select("[src]");

if you see this : en.wikipedia.org/wiki/States_and_territories_of_India . In that I want to have all the Names in States of India only. But there are other tables also , when I do doc.select(“area[title]”); I am getting all the table information . so I am looking if in select I can tell how it is used to only for a particular table.

I think Jsoup might not address this if that is the case,can you please tell me how to achieve this

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T14:39:34+00:00Added an answer on June 9, 2026 at 2:39 pm

    Try something like this

    Element indiaTable = doc.select("table").get(2); //India table is the third (index is 2) table on page
    Elements myTds = indiaTable.select("td:eq(0)"); //The states are the first column
    
    //or you can replace the two lines of code above with this
    
    Elements myTds = doc.select("table.wikitable td:eq(0)");
    
    
    
    for (Element td: myTds ) {
        System.out.println(td.text());
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm new to Jsoup, but this appears to be a great tool. I'm trying
I am new for Jsoup Html to String Parser. i am using this html
I'm fairly new to JSOUP, and i've had no issues parsing using Element.select on
doc = Jsoup.parse(html2); Whitelist whitelist = new Whitelist(); Whitelist.simpleText().addTags(table,td, tr,tbody); Cleaner cleaner = new
New to PHP and MySQL, have heard amazing things about this website from Leo
New to Regex. I want to validate to this format: Any character allowed, except
New programmer here, I am trying to understand and break down this code below
String html = Jsoup.connect(www.example.com).get().html(); Scanner in = new Scanner(html); String links ; while(in.hasNext()){ String
I am trying to create a new Element using jsoup. Element constructor: Element(Tag tag,
i use jsoup to extract the links from a website. i want to extract

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.