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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T10:24:05+00:00 2026-05-29T10:24:05+00:00

I have a main Div tag with multiple div tags as below. The child

  • 0

I have a main Div tag with multiple div tags as below. The child Div tags have no class/id that distinguishes from the other child div tags. Now I want to extract the text value from the 2nd child Div tag. How can i do that?

<div class="logFor" style="position: relative; height: 101px; padding: 5px;">
     <div style="color: #6b6b6b; font-weight: bold;">This is a monster</div>
     <div style="overflow: hidden; height: 28px; margin-top: 3px; color: #1b1f2e;">Monster in Black</div>
     <div style="position: absolute; left: 5px; bottom: 0;">
     <div style="position: absolute; right: 5px; bottom: 0;">
</div>

I want to get the text “Monster in Black”. This Div doesnt have an id/name and not sure if this style would be same or change. How would i extract using jSoup?

  • 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-05-29T10:24:06+00:00Added an answer on May 29, 2026 at 10:24 am
    package stackoverflow;
    
    import java.io.IOException;
    import java.io.InputStream;
    
    import org.apache.commons.io.IOUtils;
    import org.jsoup.Jsoup;
    import org.jsoup.nodes.Document;
    import org.jsoup.nodes.Element;
    import org.jsoup.select.Elements;
    
    public class JSoupTest {
        public static void main(String[] args) throws IOException {
            InputStream in = JSoupTest.class.getResourceAsStream("JSoupTest.txt");
    
            String html = IOUtils.toString(in);
    
            Document doc = Jsoup.parse(html);
    
            Elements divs = doc.select("DIV");
            System.out.println(divs);
    
            Element div = divs.get(2);
            System.out.println("Monster in Black".equals(div.text()));
        }
    }
    

    Produces:

    <div class="logFor" style="position: relative; height: 101px; padding: 5px;"> 
     <div style="color: #6b6b6b; font-weight: bold;">
      This is a monster
     </div> 
     <div style="overflow: hidden; height: 28px; margin-top: 3px; color: #1b1f2e;">
      Monster in Black
     </div> 
     <div style="position: absolute; left: 5px; bottom: 0;"> 
      <div style="position: absolute; right: 5px; bottom: 0;"> 
      </div> 
     </div>
    </div>
    <div style="color: #6b6b6b; font-weight: bold;">
     This is a monster
    </div>
    <div style="overflow: hidden; height: 28px; margin-top: 3px; color: #1b1f2e;">
     Monster in Black
    </div>
    <div style="position: absolute; left: 5px; bottom: 0;"> 
     <div style="position: absolute; right: 5px; bottom: 0;"> 
     </div> 
    </div>
    <div style="position: absolute; right: 5px; bottom: 0;"> 
    </div>
    true
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The Idea I have a main PHP page that loads content in DIV's from
I have a main wrapper div that is set 100% width. Inside that i
If I have a structure like this: <div id=main> <div id=sidebar> <div id=tag-cloud/> </div>
Hello guys i have main div tag: height:1800px; width:1200px; inside it there are div
I am working on a website where I have a main div . I
I have a div behind the main div. Sometimes it appears and sometimes it's
Hey Guys, i have created the following Menu Structure: <div id=menu> <ul> <li><a href=#>Main
I have main categories and sub categories. I want to be able to sort
I have main table called 'Employee' and another slave table called 'EmployeeTypes' that has
I have a Flex 3.5 application that will serve multiple purposes, and as part

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.