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 9167471
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T15:23:56+00:00 2026-06-17T15:23:56+00:00

Hi I want to scrape some text from a website using the JSoup library.

  • 0

Hi I want to scrape some text from a website using the JSoup library. I have tried the following code, and that gives me the whole webpage, I want to just extract a specific line. Here is the code I am using:

Document doc = null;
try {
doc = Jsoup.connect("http://www.example.com").get();
} catch (IOException e) {
e.printStackTrace();
}
String text = doc.html();

System.out.println(text);

That prints out the following

<html>
 <head></head>
 <body>
  Martin,James,28,London,20k
  <br /> Sarah,Jackson,43,Glasgow,32k
  <br /> Alex,Cook,22,Liverpool,18k
  <br /> Jessica,Adams,34,London,27k
  <br /> 
 </body>
</html>

How can I extract just the 6th line that reads Alex,Cook,22,Liverpool,18k and put it into an array where each element is a word before a comma (eg: [0] = Alex, [1] = Cook, etc)

  • 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-17T15:23:57+00:00Added an answer on June 17, 2026 at 3:23 pm

    Maybe you have to format (?) the Result a bit:

        Document doc = Jsoup.connect("http://www.example.com").get();
        int count = 0; // Count Nodes
    
        for( Node n : doc.body().childNodes() )
        {
            if( n instanceof TextNode )
            {
                if( count == 2 ) // Node 'Alex'
                {
                    String t[] = n.toString().split(","); // you have an array with each word as string now
    
                    System.out.println(Arrays.toString(t)); // eg. output
                }
                count++;
            }
        }
    

    Output:

    [ Alex, Cook, 22, Liverpool, 18k ]
    

    Edit:

    Since you cant select TextNode‘s by its ccntent (only possible with Elements) you need a small workaround:

    for( Node n : doc.body().childNodes() )
    {
        if( n instanceof TextNode )
        {
            str = n.toString().trim();
    
            if( str.toLowerCase().startsWith("alex") ) // Node 'Alex'
            {
                String t[] = n.toString().split(","); // you have an array with each word as string now
    
                System.out.println(Arrays.toString(t)); // eg. output
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to scrape string data from some binary text files that contain embedded
I am using beautiful soup to scrape some data from a website but I
I have a Scrapy project that I want to use to scrape some websites.
I want to scrape some information from a pokerplatforms webpage. For that I need
I want to scrape some html pages that have nested form elements with lxml.
Basically, I want to scrape some options data daily from Yahoo! Finance. I have
I want to scrape data from some text and dump it into an array.
I want to scrape a list of facts from simple website. Each one of
I want to scrape text data from a windows application to do additional processing
I have a list of URLs from which I want to scrape an attribute.

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.