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

Is there a way in jsoup to extract an image absolute url, much like one can get a link's absolute url?

Consider the following image element found in http://www.example.com/

<img src="images/chicken.jpg" width="60px" height="80px">

I would like to get http://www.example.com/images/chicken.jpg. What should I do?

share|improve this question

2 Answers

up vote 14 down vote accepted

Once you have the image element, e.g.:

Element image = document.select("img").first();
String url = image.absUrl("src");
// url = http://www.example.com/images/chicken.jpg

Alternatively:

String url = image.attr("abs:src");

Jsoup has a builtin absUrl() method on all nodes to resolve an attribute to an absolute URL, using the base URL of the node (which could be different from the URL the document was retrieved from).

See also the Working with URLs jsoup documentation.

share|improve this answer
I've tried that, and it didn't work (returned an empty string), for some reason (unlike link.attr("abs:href") which worked) – r0u1i Feb 3 '11 at 9:12
That's odd. Can you post (or email me) a sample of it not working for you? I just added a passing test case to confirm it works: github.com/jhy/jsoup/commit/… – Jonathan Hedley Feb 3 '11 at 11:27
Sorry, after more investigation it was my fault. It works now, sorry for the misunderstanding. – r0u1i Feb 17 '11 at 9:14

Let's assume you are parsing http://www.example.com/index.html.

Use jsoup to extract the img src which gives you: images/chicken.jpg

You can then use the URI class to resolve this to an absolute path:

URL url  = new URL("http://www.example.com/index.html");
URI uri = url.toURI();
System.out.println(uri.resolve("images/chicken.jpg").toString());

prints

http://www.example.com/images/chicken.jpg
share|improve this answer
good enough for me. thanks. – r0u1i Feb 2 '11 at 15:12

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.