Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to extract contents from this url http://www.qualcomm.com/innovation and this is the below content that I want to extract using jsoup.

 And I want to extract text of <div id =content>

    <div id="content">
                  <!-- Start: Header -->
<div id="content-group_header-0" class="header content-podgroup-wrapper content-podgroup-0-0 first-pod">

    <h4 class="h4 no-font-replace ">
    Your imagination knows no borders or boundaries.  </h4>


  </div>
<!-- End: Header -->

<!-- Start: Open HTML -->
<div id="content-group_open_html-0" class="open-html wysiwyg content-podgroup-wrapper content-podgroup-0-0">

  <div class="open-html"><p>And we say, let it run wild. Because in that freedom is the shape of what’s to come.</p>
<p>At Qualcomm, we believe that research and development is the key to harnessing the power of imagination – to unlocking our potential, and helping you to realize yours. So whether you’re a mobile customer or a potential development partner, a wireless network operator or a mobile device manufacturer, a mobile content creator or a business owner…</p>
<p>Whatever it is you do, our pathway to innovation begins and ends with you.</p>
</div>
  </div>

<!-- End: Open HTML -->
<!-- Start: Header -->
<div id="content-group_header-1" class="header content-podgroup-wrapper content-podgroup-1-1">

    <h4 class="h4 no-font-replace ">
    Dreams grow, but not without nurturing.  </h4>

  </div>
<!-- End: Header -->

<!-- Start: Open HTML -->
<div id="content-group_open_html-1" class="open-html wysiwyg content-podgroup-wrapper content-podgroup-1-1">

  <p>In our fiscal year 2010, we invested 23% of our gross revenue or $2.549 billion in R&D—an investment that has increased every year since 2000. It’s how we’ve been able to stay ahead of the curve and deliver on the promise of new wireless technologies:</p>

<ul class="supporting-content">
<li>Qualcomm first commercialized the CDMA wireless airlink <a href="/products_services/airlinks/cdma2000_ev-do.html">CDMA2000/EV-DO</a> when Hutchison Telecom (Hong Kong) launched their cdmaOne network in 1995. Today, there are more than <a href="/corporate_information/index.html">1.1 billion 3G CDMA subscribers worldwide</a>.</li>

<li>We were the first to produce a single <a href="/products_services/chipsets/">3G chip</a> that integrated a radio transceiver, a baseband modem, a power management system and a multimedia engine.</li>

<li>We were the first to commercialize a chipset for <a href="/products_services/airlinks/wcdma_hspa.html">HSDPA and HSUPA</a>.</li>

<li>We were the first to deliver GHz processing power integrated with 3G connectivity through our <a href="/products_services/chipsets/snapdragon.html">Snapdragon&trade;</a> product.</li>

<li>We are the first to produce a laptop solution that will enable truly global broadband connectivity across both CDMA and UMTS networks with our <a href="/products_services/chipsets/gobi.html">Gobi&trade;</a> chipset.</li>

<li>We are the first to commercialize an <a href="/products_services/consumer_electronics/portable_devices/index.html">IMOD based display application.</a></li>

</ul>
<p>In fact, with a current intellectual property portfolio consisting of more than 77,000 patents granted and pending, we’ve been the first to deliver on quite a few things.</p>
  </div>
<!-- End: Open HTML -->
<!-- Start: Header -->
<div id="content-group_header-2" class="header content-podgroup-wrapper content-podgroup-2-2">

    <h4 class="h4 no-font-replace ">
    Our partnerships are our most valuable assets.  </h4>

  </div>
<!-- End: Header -->

<!-- Start: Open HTML -->
<div id="content-group_open_html-2" class="open-html wysiwyg content-podgroup-wrapper content-podgroup-2-2">

  <div class="open-html"><p>The Qualcomm business model is built on the strength of collaboration.</p>
<p>Our partners approach wireless technology from unique perspectives, finding inventive ways to unlock potential. At the same time, we invest in research and development, to build on our own technologies. Working together in this way, Qualcomm and its partners break fresh ground and new wireless features are born.</p>
<p>Device manufacturers then adopt the new features and enhance their products. Better products lead to increased sales for manufacturers, but they also bring new subscribers to network operators and new customers to content providers. As this new revenue is generated, it allows us to channel further resources into R&amp;D, creating opportunity for more partnerships.</p>
<p>In other words, success breeds success, and the cycle continues.</p>
<p>Our business model has proven so successful that today we license to more than 230 wireless device manufacturers around the world, from small start-ups to many major global wireless brands. More than 680 wireless network operators worldwide rely on technology developed by Qualcomm, and that number continues to grow.</p>
</div>

  </div>
<!-- End: Open HTML -->
<!-- Start: Header -->
<div id="content-group_header-3" class="header content-podgroup-wrapper content-podgroup-3-3">

    <h4 class="h4 no-font-replace ">
    So where does the pathway to innovation lead?  </h4>

  </div>
<!-- End: Header -->

<!-- Start: Open HTML -->
<div id="content-group_open_html-3" class="open-html wysiwyg content-podgroup-wrapper content-podgroup-3-3 last-pod">

  <div class="open-html"><p>We’re eager to find out ourselves, because if the pathway begins with you, then it’s up to you to decide where it’s headed. So let’s explore the possibilities. Let’s never stop discovering.</p>
<p>Working together, the pathway to innovation can go as far as our dreams will take us.</p>
</div>
  </div>
<!-- End: Open HTML -->
                </div><!-- END: content -->

Can anybody explain how it can be done using JSOUP.

share|improve this question

1 Answer

up vote 4 down vote accepted

Why would you use regular expressions for this? Jsoup is a HTML parser which eats CSS selectors only. Just use a proper CSS selector. I understand that you want to select <div id="content">? Use the CSS ID-selector of this format #id for this.

Document document = Jsoup.connect("http://www.qualcomm.com/innovation").get();
Element content = document.select("#content").first();
System.out.println(content.html()); 
// ...

Or if you want to get the text only, use Element#text() instead of Element#html():

System.out.println(content.text()); 
// ...

Read the following documents thoroughly to learn how to use CSS selectors in Jsoup:

You shouldn't think about using regexps to parse HTML.

share|improve this answer
Thanks BalusC, I have tried this way.. But by this way I get html tags also after the <div id= content> like h4 etc etc. I want only the text if you see the above link that we are scrapping. I want this whole text Your imagination knows no borders or boundaries. And we say, let it run wild. Because in that freedom is the shape of what’s to come. cont'd – TechGeeky Sep 1 '11 at 20:19
try using .text() instead of .outterhtml() maybe... – buildakicker Dec 4 '12 at 7:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.