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?

link|improve this question

67% accept rate
feedback

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.

link|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
feedback

Your Answer

 
or
required, but never shown

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