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

I just discovered that setting the baseUri is necessary for each Element you get by doing a select. It would be a lot better if the baseUri of the Document is applied to each Element.

Document d = Jsoup.parse(myString);
doc.setBaseUri("http://www.google.de");

If I execute

Element e = d.select(....).get(0);

The baseUri of e is empty.

Is this a bug or is it intended?

share|improve this question

1 Answer

The base URI is specific to each element, as there are cases in HTML where the base URI can change throughout the parse. Currently, setting it on the document after the parse does not bubble it down to child nodes.

Just specify it when you parse the HTML string, e.g.:

Document doc = Jsoup.parse(myString, "http://www.google.de");

If you fetch the HTML from a URL and parse that (with Jsoup.connect), the base URI is automatically set.

share|improve this answer
Afaik you set the baseURI only within the head element (<base>). I'm not fetching HTML from a URL. So setting the baseURI of the document is pretty much useless since you normally do a select after that. Please see this as a feature request now :) – T3rm1 Jul 24 '11 at 1:14
If you include it in the Jsoup.parse(url, baseUri) method like I suggest, it is used as the default and will flow to every element, unless the document overrides it. – Jonathan Hedley Mar 16 at 19:17

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.