Jsoup has 2 html parse() methods:
- parse(String html) - "As no base URI is specified, absolute URL detection relies on the HTML including a tag."
- parse(String html, String baseUri) - "The URL where the HTML was retrieved from. Used to resolve relative URLs to absolute URLs, that occur before the HTML declares a tag."
I am having a difficulty understanding the meaning of the difference between the two:
- In the 2nd
parse()version, what does "resolve relative URLs to absolute URLs, that occur before the HTML declares a<base href>tag" mean? What if a<base href>tag never occurs in the page? - What is the purpose of absolute URL detection? Why does Jsoup need to find the absolute URL?
- Lastly, but most importantly: Is
baseUrithe full URL of HTML page (as phrased in original documentation) or is it the base URL of the HTML page?