Generated by
JDiff

com.itextpdf.styledxmlparser.jsoup Documentation Differences

This file contains all the changes in documentation in the package com.itextpdf.styledxmlparser.jsoup as colored differences. Deletions are shown like this , and additions are shown like this.
If no deletions or additions are shown in an entry, the HTML tags will be what has changed. The new HTML tags are shown in the differences. If no documentation existed, and then some was added in a later version, this change is noted in the appropriate class pages of differences, but the change is not shown on this page. Only changes in existing text are shown here. Similarly, documentation which was inherited from another class or interface is not shown here.
Note that an HTML error in the new documentation may cause the display of other documentation changes to be presented incorrectly. For instance, failure to close a tag will cause all subsequent paragraphs to be displayed differently.

Class Jsoup, Document parse(File, String)

Parse the contents of a file as HTML. The location of the file is used as the base URI to qualify relative URLs. @param in file to load HTML from @param charsetName (optional) character set of file contents. Set to {@code null} to determine from {@code http-equiv} meta tag, if present, or fall back to {@code UTF-8} (which is often safe to do). @return sane HTML HTML @throws IOException if the file could not be found, or read, or if the charsetName is invalid. @see #parse(File, String, String)
Class Jsoup, Document parse(File, String, String)

Parse the contents of a file as HTML. @param in file to load HTML from @param charsetName (optional) character set of file contents. Set to {@code null} to determine from {@code http-equiv} meta tag, if present, or fall back to {@code UTF-8} (which is often safe to do). @param baseUri The URL where the HTML was retrieved from, to resolve relative links against. @return sane HTML HTML @throws IOException if the file could not be found, or read, or if the charsetName is invalid.
Class Jsoup, Document parse(InputStream, String, String)

Read an input stream, and parse it to a Document. @param in input stream to read. Make sure to close it after parsing. @param charsetName (optional) character set of file contents. Set to {@code null} to determine from {@code http-equiv} meta tag, if present, or fall back to {@code UTF-8} (which is often safe to do). @param baseUri The URL where the HTML was retrieved from, to resolve relative links against. @return sane HTML HTML @throws IOException if the file could not be found, or read, or if the charsetName is invalid.
Class Jsoup, Document parse(InputStream, String, String, Parser)

Read an input stream, and parse it to a Document. You can provide an alternate parser, such as a simple XML (non-HTML) parser. @param in input stream to read. Make sure to close it after parsing. @param charsetName (optional) character set of file contents. Set to {@code null} to determine from {@code http-equiv} meta tag, if present, or fall back to {@code UTF-8} (which is often safe to do). @param baseUri The URL where the HTML was retrieved from, to resolve relative links against. @param parser @param parser alternate parser to use. @return sane HTML HTML @throws IOException if the file could not be found, or read, or if the charsetName is invalid.
Class Jsoup, Document parse(String)

Parse HTML into a Document. As no base URI is specified, absolute URL detection relies on the HTML including a {@code } tag. @param html HTML to parse @return sane HTML HTML @see #parse(String, String)
Class Jsoup, Document parse(String, String)

Parse HTML into a Document. The parser will make a sensible, balanced document tree out of any HTML. @param html HTML to parse @param baseUri The URL where the HTML was retrieved from. Used to resolve relative URLs to absolute URLs, that occur before the HTML declares a {@code } tag. @return sane HTML
Class Jsoup, Document parse(String, String, Parser)

Parse HTML into a Document, using the provided Parser. You can provide an alternate parser, such as a simple XML (non-HTML) parser. @param html HTML to parse @param baseUri The URL where the HTML was retrieved from. Used to resolve relative URLs to absolute URLs, that occur before the HTML declares a {@code } tag. @param parser alternate parser to use. @return sane HTML
Class Jsoup, Document parseBodyFragment(String)

Parse a fragment of HTML, with the assumption that it forms the {@code body} of the HTML. @param bodyHtml body HTML fragment @return sane HTML document document @see Document#body()
Class Jsoup, Document parseBodyFragment(String, String)

Parse a fragment of HTML, with the assumption that it forms the {@code body} of the HTML. @param bodyHtml body HTML fragment @param baseUri URL to resolve relative URLs against. @return sane HTML document document @see Document#body()