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

I have a piece of HTML code of a web page (library thing) like:

    <div class="qelcontent" id="4ed0e0ba4f1b16.47984984" style="display:block;"> 
<div class="description"><h4 class="first"><b>Amazon.com Product Description</b>
(<a href="http://rads.stackoverflow.com/amzn/click/0860783227">ISBN 0860783227</a>, Hardcover)</h4>

I want to get the absolute URL from an href attribute. I tried:

selector = document.select(".first .a[href]");

But it returned null. How can I get the value?

share|improve this question
well i tried exactly what i write above and as a result i got null.. There was nothing to found.. nothing to match with that selector.. – tequilaras Nov 26 '11 at 13:52
Please provide the URL of the page. – BalusC Nov 27 '11 at 23:39

1 Answer

This solves this specific problem.. not sure if it will work with your entire dataset.

    String html = "<div class=\"qelcontent\" id=\"4ed0e0ba4f1b16.47984984\" style=\"display:block;\">" + 
    "<div class=\"description\"><h4 class=\"first\"><b>Amazon.com Product Description</b>" +
    "(<a href=\"http://rads.stackoverflow.com/amzn/click/0860783227\">ISBN 0860783227</a>, Hardcover)</h4>";

    Document doc = Jsoup.parse(html);
    System.out.println(doc.select(".first").select("a").attr("href"));
share|improve this answer

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.