|
Generated by JDiff |
||||||||
| PREV PACKAGE NEXT PACKAGE FRAMES NO FRAMES | |||||||||
This file contains all the changes in documentation in the packagecom.itextpdf.styledxmlparser.jsoupas colored differences. Deletions are shownlike 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.
Parse the contents of a file as HTML. The location of the file is used as the base URI to qualify relative URLs.Class Jsoup, Document parse(File, String, String)@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 saneHTMLHTML@throws IOException if the file could not be found, or read, or if the charsetName is invalid.@see #parse(File, String, String)
Parse the contents of a file as HTML.Class Jsoup, Document parse(InputStream, String, String)@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 saneHTMLHTML @throws IOException if the file could not be found, or read, or if the charsetName is invalid.
Read an input stream, and parse it to a Document.Class Jsoup, Document parse(InputStream, String, String, 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.@return saneHTMLHTML @throws IOException if the file could not be found, or read, or if the charsetName is invalid.
Read an input stream, and parse it to a Document. You can provide an alternate parser, such as a simple XMLClass Jsoup, Document parse(String)(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@paramparseralternate parser to use.@return saneHTMLHTML @throws IOException if the file could not be found, or read, or if the charsetName is invalid.
Parse HTML into a Document. As no base URI is specified, absolute URL detection relies on the HTML including aClass Jsoup, Document parse(String, String){@code} tag. @param html HTML to parse@return saneHTMLHTML @see #parse(String, String)
Parse HTML into a Document. The parser will make a sensible, balanced document tree out of any HTML.Class Jsoup, Document parse(String, String, 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. @return sane HTML
Parse HTML into a Document, using the provided Parser. You can provide an alternate parser, such as a simple XMLClass Jsoup, Document parseBodyFragment(String)(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
Parse a fragment of HTML, with the assumption that it forms the {@code body} of the HTML.Class Jsoup, Document parseBodyFragment(String, String)@param bodyHtml body HTML fragment@return sane HTMLdocumentdocument @see Document#body()
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 HTMLdocumentdocument @see Document#body()