| java.lang.Object au.id.jericho.lib.html.Segment au.id.jericho.lib.html.Source
Source | public class Source extends Segment (Code) | | Represents a source HTML document.
The first step in parsing an HTML document is always to construct a Source object from the source data, which can be a
String , Reader , InputStream or URL .
Each constructor uses all the evidence available to determine the original
of the data.
Once the Source object has been created, you can immediately start searching for
or
within the document
using the tag search methods.
In certain circumstances you may be able to improve performance by calling the
Source.fullSequentialParse() method before calling any
tag search methods. See the documentation of the
Source.fullSequentialParse() method for details.
Any issues encountered while parsing are logged to a
Logger object.
The
Source.setLogger(Logger) method can be used to explicitly set a Logger implementation for a particular Source instance,
otherwise the static
Config.LoggerProvider property determines how the logger is set by default for all Source instances.
See the documentation of the
Config.LoggerProvider property for information about how the default logging provider is determined.
Note that many of the useful functions which can be performed on the source document are
defined in its superclass,
Segment .
The source object is itself a segment which spans the entire document.
Most of the methods defined in this class are useful for determining the elements and tags
surrounding or neighbouring a particular character position in the document.
For information on how to create a modified version of this source document, see the
OutputDocument class.
See Also: Segment |
Constructor Summary | |
public | Source(CharSequence text) Constructs a new Source object from the specified text. | | Source(Reader reader, String encoding) | public | Source(Reader reader) Constructs a new Source object by loading the content from the specified Reader . | public | Source(InputStream inputStream) Constructs a new Source object by loading the content from the specified InputStream . | public | Source(URL url) Constructs a new Source object by loading the content from the specified URL.
The algorithm for detecting the character
of the source document is as follows:
(process termination is marked by ♦)
- If the HTTP headers received when opening a connection to the URL include a
Content-Type header
specifying a
charset parameter, then use the encoding specified in the value of the charset parameter. |
Method Summary | |
public void | clearCache() Clears the
of all tags. | public List | findAllElements() Returns a list of all
in this source document. | public List | findAllStartTags() Returns a list of all
in this source document. | public List | findAllTags() Returns a list of all
in this source document. | public Element | findEnclosingElement(int pos) Returns the most nested
Element that
the specified position in the source document.
The specified position can be anywhere inside the
,
,
or
of the element. | public Element | findEnclosingElement(int pos, String name) Returns the most nested
Element with the specified
that
the specified position in the source document.
The specified position can be anywhere inside the
,
,
or
of the element. | public Tag | findEnclosingTag(int pos) Returns the
Tag that
the specified position in the source document.
See the
Tag class documentation for more details about the behaviour of this method.
Parameters: pos - the position in the source document, may be out of bounds. | public Tag | findEnclosingTag(int pos, TagType tagType) Returns the
Tag of the specified
that
the specified position in the source document.
See the
Tag class documentation for more details about the behaviour of this method.
Parameters: pos - the position in the source document, may be out of bounds. Parameters: tagType - the TagType to search for. | public int | findNameEnd(int pos) Returns the end position of the XML Name that starts at the
specified position.
This implementation first checks that the character at the specified position is a valid XML Name start character as defined by the
Tag.isXMLNameStartChar(char) method. | public CharacterReference | findNextCharacterReference(int pos) Returns the
CharacterReference beginning at or immediately following the specified position in the source document.
Character references positioned within an HTML
are NOT ignored.
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. | public Element | findNextElement(int pos) Returns the
Element beginning at or immediately following the specified position in the source document.
This is equivalent to
Source.findNextStartTag(int) findNextStartTag(pos) .
StartTag.getElement getElement() ,
assuming the result is not null .
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. | public Element | findNextElement(int pos, String name) Returns the
Element with the specified
beginning at or immediately following the specified position in the source document.
This is equivalent to
Source.findNextStartTag(int,String) findNextStartTag(pos,name) .
StartTag.getElement getElement() ,
assuming the result is not null .
Specifying a null argument to the name parameter is equivalent to
Source.findNextStartTag(int) findNextElement(pos) .
Specifying an argument to the name parameter that ends in a colon (: ) searches for all elements
in the specified XML namespace.
This method also returns elements consisting of
tags if the specified name is not a valid
.
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. Parameters: name - the of the element to search for. | public Element | findNextElement(int pos, String attributeName, String value, boolean valueCaseSensitive) Returns the
Element with the specified attribute name/value pair beginning at or immediately following the specified position in the source document.
This is equivalent to
Source.findNextStartTag(int,String,String,boolean) findNextStartTag(pos,attributeName,value,valueCaseSensitive) .
StartTag.getElement getElement() ,
assuming the result is not null .
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. Parameters: attributeName - the attribute name (case insensitive) to search for, must not be null . Parameters: value - the value of the specified attribute to search for, must not be null . Parameters: valueCaseSensitive - specifies whether the attribute value matching is case sensitive. | public EndTag | findNextEndTag(int pos) Returns the
EndTag beginning at or immediately following the specified position in the source document.
See the
Tag class documentation for more details about the behaviour of this method.
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. | public EndTag | findNextEndTag(int pos, String name) Returns the
EndTag with the specified
beginning at or immediately following the specified position in the source document.
See the
Tag class documentation for more details about the behaviour of this method.
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. Parameters: name - the of the end tag to search for, must not be null . | public EndTag | findNextEndTag(int pos, String name, EndTagType endTagType) Returns the
EndTag with the specified
and
beginning at or immediately following the specified position in the source document.
See the
Tag class documentation for more details about the behaviour of this method.
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. Parameters: name - the of the end tag to search for, must not be null . Parameters: endTagType - the of the end tag to search for, must not be null . | public StartTag | findNextStartTag(int pos) Returns the
StartTag beginning at or immediately following the specified position in the source document.
See the
Tag class documentation for more details about the behaviour of this method.
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. | public StartTag | findNextStartTag(int pos, String name) Returns the
StartTag with the specified
beginning at or immediately following the specified position in the source document.
See the
Tag class documentation for more details about the behaviour of this method.
Specifying a null argument to the name parameter is equivalent to
Source.findNextStartTag(int) findNextStartTag(pos) .
Specifying an argument to the name parameter that ends in a colon (: ) searches for all start tags
in the specified XML namespace.
This method also returns
tags if the specified name is not a valid
.
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. Parameters: name - the of the start tag to search for. | public StartTag | findNextStartTag(int pos, String attributeName, String value, boolean valueCaseSensitive) Returns the
StartTag with the specified attribute name/value pair beginning at or immediately following the specified position in the source document.
See the
Tag class documentation for more details about the behaviour of this method.
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. Parameters: attributeName - the attribute name (case insensitive) to search for, must not be null . Parameters: value - the value of the specified attribute to search for, must not be null . Parameters: valueCaseSensitive - specifies whether the attribute value matching is case sensitive. | public Tag | findNextTag(int pos) Returns the
Tag beginning at or immediately following the specified position in the source document.
See the
Tag class documentation for more details about the behaviour of this method.
Use
Tag.findNextTag to find the tag immediately following another tag.
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. | public Tag | findNextTag(int pos, TagType tagType) Returns the
Tag of the specified
beginning at or immediately following the specified position in the source document.
See the
Tag class documentation for more details about the behaviour of this method.
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. Parameters: tagType - the TagType to search for. | public CharacterReference | findPreviousCharacterReference(int pos) Returns the
CharacterReference at or immediately preceding (or
) the specified position in the source document.
Character references positioned within an HTML
are NOT ignored.
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. | public EndTag | findPreviousEndTag(int pos) Returns the
EndTag beginning at or immediately preceding the specified position in the source document.
See the
Tag class documentation for more details about the behaviour of this method.
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. | public EndTag | findPreviousEndTag(int pos, String name) Returns the
EndTag with the specified
at or immediately preceding (or
) the specified position in the source document.
See the
Tag class documentation for more details about the behaviour of this method.
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. Parameters: name - the of the end tag to search for, must not be null . | public StartTag | findPreviousStartTag(int pos) Returns the
StartTag at or immediately preceding (or
) the specified position in the source document.
See the
Tag class documentation for more details about the behaviour of this method.
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. | public StartTag | findPreviousStartTag(int pos, String name) Returns the
StartTag with the specified
at or immediately preceding (or
) the specified position in the source document.
See the
Tag class documentation for more details about the behaviour of this method.
Specifying a null argument to the name parameter is equivalent to
Source.findPreviousStartTag(int) findPreviousStartTag(pos) .
This method also returns
tags if the specified name is not a valid
.
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. Parameters: name - the of the start tag to search for. | public Tag | findPreviousTag(int pos) Returns the
Tag beginning at or immediately preceding (or
) the specified position in the source document.
See the
Tag class documentation for more details about the behaviour of this method.
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. | public Tag | findPreviousTag(int pos, TagType tagType) Returns the
Tag of the specified
beginning at or immediately preceding (or
) the specified position in the source document.
See the
Tag class documentation for more details about the behaviour of this method.
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. Parameters: tagType - the TagType to search for. | public Tag[] | fullSequentialParse() Parses all of the
in this source document sequentially from beginning to end.
Calling this method can greatly improve performance if most or all of the tags in the document need to be parsed.
Calling the
Source.findAllTags() ,
Source.findAllStartTags() ,
Source.findAllElements() or
Source.getChildElements() method on the Source object
performs a full sequential parse automatically.
There are however still circumstances where it should be called manually, such as when it is known that most or all of the tags in the document will need to be parsed,
but none of the abovementioned methods are used, or are called only after calling one or more other tag search methods.
If this method is called manually, is should be called soon after the Source object is created,
before any tag search methods are called.
By default, tags are parsed only as needed, which is referred to as parse on demand mode.
In this mode, every call to a tag search method that is not returning previously cached tags must perform a relatively complex check to determine whether a
potential tag is in a
.
Generally speaking, a tag is in a valid position if it does not appear inside any another tag.
can appear anywhere in a document, including inside other tags, so this relates only to non-server tags.
Theoretically, checking whether a specified position in the document is enclosed in another tag is only possible if every preceding tag has been parsed,
otherwise it is impossible to tell whether one of the delimiters of the enclosing tag was in fact enclosed by some other tag before it, thereby invalidating it.
When this method is called, each tag is parsed in sequence starting from the beginning of the document, making it easy to check whether each potential
tag is in a valid position.
In parse on demand mode a compromise technique must be used for this check, since the theoretical requirement of having parsed all preceding tags
is no longer practical. | String | getBestGuessNewLine() | public String | getCacheDebugInfo() Returns a string representation of the tag cache, useful for debugging purposes. | static String | getCharsetParameterFromHttpHeaderValue(String httpHeaderValue) | public List | getChildElements() Returns a list of the top-level
in the document element hierarchy.
The objects in the list are all of type
Element .
The term top-level element refers to an element that is not nested within any other element in the document.
The term document element hierarchy refers to the hierarchy of elements that make up this source document.
The source document itself is not considered to be part of the hierarchy, meaning there is typically more than one top-level element.
Even when the source represents an entire HTML document, the
and/or an
often exist as top-level elements along with the
HTMLElementName.HTML HTML element itself.
The
Element.getChildElements method can be used to get the children of the top-level elements, with recursive use providing a means to
visit every element in the document hierarchy.
The document element hierarchy differs from that of the Document Object Model
in that it is only a representation of the elements that are physically present in the source text. | public int | getColumn(int pos) Returns the column number of the specified character position in the source document.
Parameters: pos - the position in the source document. | public String | getDocumentSpecifiedEncoding() Returns the document
specified within the text of the document.
The document encoding can be specified within the document text in two ways.
They are referred to generically in this library as an encoding specification,
and are listed below in order of precedence:
-
An encoding declaration within the
of an XML document,
which must be present if it has an encoding other than UTF-8
or UTF-16.
<?xml version="1.0" encoding="ISO-8859-1" ?>
-
A META declaration,
which is in the form of a
HTMLElementName.META META tag with attribute
http-equiv="Content-Type" .
The encoding is specified in the charset parameter of a
Content-Type
HTTP header value, which is placed in the value of the meta tag's content attribute.
This META declaration should appear as early as possible in the
HTMLElementName.HEAD HEAD element.
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
Both of these tags must only use characters in the range U+0000 to U+007F, and in the case of the META declaration
must use ASCII encoding. | public Element | getElementById(String id) Returns the
Element with the specified id attribute value.
This simulates the script method
getElementById
defined in DOM HTML level 1.
This is equivalent to
Source.findNextStartTag(int,String,String,boolean) findNextStartTag (0,"id",id,true).
StartTag.getElement getElement() , assuming that the element exists.
A well formed HTML document should have no more than one element with any given id attribute value.
Parameters: id - the id attribute value (case sensitive) to search for, must not be null . | public String | getEncoding() Returns the character encoding scheme of the source byte stream used to create this object.
The encoding of a document defines how the original byte stream was encoded into characters.
The HTTP specification section 3.4
uses the term "character set" to refer to the encoding, and the term "charset" is similarly used in Java
(see the class java.nio.charset.Charset ).
This often causes confusion, as a modern "coded character set" such as Unicode
can have several encodings, such as UTF-8, UTF-16, and UTF-32.
See the Wikipedia character encoding article
for an explanation of the terminology.
This method makes the best possible effort to return the name of the encoding used to decode the original source byte stream
into character data. | public String | getEncodingSpecificationInfo() Returns a concise description of how the
of the source document was determined. | public Writer | getLogWriter() Returns the destination Writer for log messages. | public Logger | getLogger() Returns the
Logger that handles log messages. | public String | getNewLine() Returns the newline character sequence used in the source document. | final public ParseText | getParseText() Returns the
of this source document. | List | getParsedTags() Gets a list of all the tags that have been parsed so far. | public String | getPreliminaryEncodingInfo() Returns the preliminary encoding of the source document together with a concise description of how it was determined. | public int | getRow(int pos) Returns the row number of the specified character position in the source document.
Parameters: pos - the position in the source document. | public RowColumnVector | getRowColumnVector(int pos) Returns a
RowColumnVector object representing the row and column number of the specified character position in the source document.
Parameters: pos - the position in the source document. | public SourceFormatter | getSourceFormatter() Formats the HTML source by laying out each non-inline-level element on a new line with an appropriate indent. | final public Tag | getTagAt(int pos) Returns the
Tag at the specified position in the source document.
See the
Tag class documentation for more details about the behaviour of this method.
This method also returns
tags.
Parameters: pos - the position in the source document, may be out of bounds. | public void | ignoreWhenParsing(int begin, int end) Causes the specified range of the source text to be ignored when parsing. | public void | ignoreWhenParsing(Collection segments) Causes all of the segments in the specified collection to be ignored when parsing. | public CharStreamSource | indent(String indentString, boolean tidyTags, boolean collapseWhiteSpace, boolean indentAllElements) Formats the HTML source by laying out each non-inline-level element on a new line with an appropriate indent.
This method has been deprecated as of version 2.4 and replaced with the
Source.getSourceFormatter() method.
Parameters: indentString - the string to use for indentation. Parameters: tidyTags - specifies whether to replace the original text of each tag with the output from its Tag.tidy method. Parameters: collapseWhiteSpace - specifies whether to collapse the white space in the text between the tags. Parameters: indentAllElements - specifies whether to indent all elements, including and those with preformatted contents. | public boolean | isLoggingEnabled() Indicates whether logging is currently enabled. | public boolean | isXML() Indicates whether the source document is likely to be XML. | public void | log(String message) Writes the specified message to the log. | static Logger | newLogger() | public Attributes | parseAttributes(int pos, int maxEnd) Parses any
Attributes starting at the specified position.
This method is only used in the unusual situation where attributes exist outside of a start tag.
The
StartTag.getAttributes method should be used in normal situations.
The returned Attributes segment always begins at pos ,
and ends at the end of the last attribute before either maxEnd or
the first occurrence of "/>" or ">" outside of a quoted attribute value, whichever comes first.
Only returns null if the segment contains a major syntactical error
or more than the
number of
minor syntactical errors.
This is equivalent to
Source.parseAttributes(int,int,int) parseAttributes (pos,maxEnd,
Attributes.getDefaultMaxErrorCount )} .
Parameters: pos - the position in the source document at the beginning of the attribute list, may be out of bounds. Parameters: maxEnd - the maximum end position of the attribute list, or -1 if no maximum. | public Attributes | parseAttributes(int pos, int maxEnd, int maxErrorCount) Parses any
Attributes starting at the specified position.
This method is only used in the unusual situation where attributes exist outside of a start tag.
The
StartTag.getAttributes method should be used in normal situations.
Only returns null if the segment contains a major syntactical error
or more than the specified number of minor syntactical errors.
The maxErrorCount argument overrides the
.
See
Source.parseAttributes(int pos,int maxEnd) for more information.
Parameters: pos - the position in the source document at the beginning of the attribute list, may be out of bounds. Parameters: maxEnd - the maximum end position of the attribute list, or -1 if no maximum. Parameters: maxErrorCount - the maximum number of minor errors allowed while parsing. | public void | setLogWriter(Writer writer) to an implementation that that sends all output to a specified Writer . | public void | setLogger(Logger logger) Sets the
Logger that handles log messages. | public String | toString() Returns the source text as a String . |
useAllTypesCache | boolean useAllTypesCache(Code) | | |
useSpecialTypesCache | boolean useSpecialTypesCache(Code) | | |
Source | public Source(CharSequence text)(Code) | | Constructs a new Source object from the specified text.
Parameters: text - the source text. |
Source | public Source(Reader reader) throws IOException(Code) | | Constructs a new Source object by loading the content from the specified Reader .
If the specified reader is an instance of InputStreamReader , the
Source.getEncoding() method of the
created source object returns the encoding from InputStreamReader.getEncoding() .
Parameters: reader - the java.io.Reader from which to load the source text. throws: java.io.IOException - if an I/O error occurs. |
Source | public Source(InputStream inputStream) throws IOException(Code) | | Constructs a new Source object by loading the content from the specified InputStream .
The algorithm for detecting the character
of the source document from the raw bytes
of the specified input stream is the same as that for the
Source.Source(URL) constructor,
except that the first step is not possible as there is no
Content-Type header to check.
Parameters: inputStream - the java.io.InputStream from which to load the source text. throws: java.io.IOException - if an I/O error occurs. See Also: Source.getEncoding() |
Source | public Source(URL url) throws IOException(Code) | | Constructs a new Source object by loading the content from the specified URL.
The algorithm for detecting the character
of the source document is as follows:
(process termination is marked by ♦)
- If the HTTP headers received when opening a connection to the URL include a
Content-Type header
specifying a
charset parameter, then use the encoding specified in the value of the charset parameter. ♦
- Read the first four bytes of the input stream.
- If the input stream is empty, the created source document has zero length and its
Source.getEncoding() method
returns
null . ♦
- If the input stream starts with a unicode Byte Order Mark (BOM),
then use the encoding signified by the BOM. ♦
- If the stream contains less than four bytes, then:
- If the stream contains either one or three bytes, then use the encoding ISO-8859-1. ♦
- If the stream starts with a zero byte, then use the encoding UTF-16BE. ♦
- If the second byte of the stream is zero, then use the encoding UTF-16LE. ♦
- Otherwise use the encoding ISO-8859-1. ♦
- Determine a
by examining the first four bytes of the input stream.
See the
Source.getPreliminaryEncodingInfo() method for details.
- Read the first 2048 bytes of the input stream and decode it using the preliminary encoding to create a "preview segment".
If the detected preliminary encoding is not supported on this platform, create the preview segment using
ISO-8859-1 instead (this incident is logged at
level).
- Search the preview segment for an encoding specification, which should always appear at or near the top of the document.
- If an encoding specification is found:
- If the specified encoding is supported on this platform, use it. ♦
- If the specified encoding is not supported on this platform, use the encoding that was used to create the preview segment,
which is normally the detected
. ♦
- If the document
, then use UTF-8. ♦
Section 4.3.3 of the XML 1.0 specification states that
an XML file that is not encoded in UTF-8 must contain either a UTF-16 BOM
or an encoding declaration in its
.
Since neither of these was detected, we can assume the encoding is UTF-8.
- Use the encoding that was used to create the preview segment, which is normally the detected
. ♦
This is the best guess, in the absence of any explicit information about the encoding, based on the first four bytes of the stream.
The HTTP protocol section 3.7.1
states that an encoding of ISO-8859-1 can be assumed
if no charset parameter was included in the HTTP
Content-Type header.
This is consistent with the preliminary encoding detected in this scenario.
Parameters: url - the URL from which to load the source text. throws: java.io.IOException - if an I/O error occurs. See Also: Source.getEncoding() |
clearCache | public void clearCache()(Code) | | Clears the
of all tags.
This method may be useful after calling the
Segment.ignoreWhenParsing method so that any tags previously found within the ignored segments
will no longer be returned by the tag search methods.
|
findAllElements | public List findAllElements()(Code) | | Returns a list of all
in this source document.
Calling this method on the Source object performs a
automatically.
The elements returned correspond exactly with the start tags returned in the
Source.findAllStartTags() method.
a list of all in this source document. |
findAllStartTags | public List findAllStartTags()(Code) | | Returns a list of all
in this source document.
Calling this method on the Source object performs a
automatically.
See the
Tag class documentation for more details about the behaviour of this method.
a list of all in this source document. |
findAllTags | public List findAllTags()(Code) | | Returns a list of all
in this source document.
Calling this method on the Source object performs a
automatically.
See the
Tag class documentation for more details about the behaviour of this method.
a list of all in this source document. |
findEnclosingElement | public Element findEnclosingElement(int pos)(Code) | | Returns the most nested
Element that
the specified position in the source document.
The specified position can be anywhere inside the
,
,
or
of the element. There is no requirement that the returned element has an end tag, and it
may be a
or HTML
.
See the
Tag class documentation for more details about the behaviour of this method.
Parameters: pos - the position in the source document, may be out of bounds. the most nested Element that the specified position in the source document, or null if the position is not within an element or is out of bounds. |
findEnclosingElement | public Element findEnclosingElement(int pos, String name)(Code) | | Returns the most nested
Element with the specified
that
the specified position in the source document.
The specified position can be anywhere inside the
,
,
or
of the element. There is no requirement that the returned element has an end tag, and it
may be a
or HTML
.
See the
Tag class documentation for more details about the behaviour of this method.
This method also returns elements consisting of
tags if the specified name is not a valid
.
Parameters: pos - the position in the source document, may be out of bounds. Parameters: name - the of the element to search for. the most nested Element with the specified that the specified position in the source document, or null if none exists or the specified position is out of bounds. |
findEnclosingTag | public Tag findEnclosingTag(int pos)(Code) | | Returns the
Tag that
the specified position in the source document.
See the
Tag class documentation for more details about the behaviour of this method.
Parameters: pos - the position in the source document, may be out of bounds. the Tag that the specified position in the source document, or null if the position is not within a tag or is out of bounds. |
findEnclosingTag | public Tag findEnclosingTag(int pos, TagType tagType)(Code) | | Returns the
Tag of the specified
that
the specified position in the source document.
See the
Tag class documentation for more details about the behaviour of this method.
Parameters: pos - the position in the source document, may be out of bounds. Parameters: tagType - the TagType to search for. the Tag of the specified that the specified position in the source document, or null if the position is not within a tag of the specified type or is out of bounds. |
findNameEnd | public int findNameEnd(int pos)(Code) | | Returns the end position of the XML Name that starts at the
specified position.
This implementation first checks that the character at the specified position is a valid XML Name start character as defined by the
Tag.isXMLNameStartChar(char) method. If this is not the case, the value -1 is returned.
Once the first character has been checked, subsequent characters are checked using the
Tag.isXMLNameChar(char) method until
one is found that is not a valid XML Name character or the end of the document is reached. This position is then returned.
Parameters: pos - the position in the source document of the first character of the XML Name. the end position of the XML Name that starts at the specified position. throws: IndexOutOfBoundsException - if the specified position is not within the bounds of the document. |
findNextCharacterReference | public CharacterReference findNextCharacterReference(int pos)(Code) | | Returns the
CharacterReference beginning at or immediately following the specified position in the source document.
Character references positioned within an HTML
are NOT ignored.
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. the CharacterReference beginning at or immediately following the specified position in the source document, or null if none exists or the specified position is out of bounds. |
findNextElement | public Element findNextElement(int pos)(Code) | | Returns the
Element beginning at or immediately following the specified position in the source document.
This is equivalent to
Source.findNextStartTag(int) findNextStartTag(pos) .
StartTag.getElement getElement() ,
assuming the result is not null .
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. the Element beginning at or immediately following the specified position in the source document, or null if none exists or the specified position is out of bounds. |
findNextElement | public Element findNextElement(int pos, String name)(Code) | | Returns the
Element with the specified
beginning at or immediately following the specified position in the source document.
This is equivalent to
Source.findNextStartTag(int,String) findNextStartTag(pos,name) .
StartTag.getElement getElement() ,
assuming the result is not null .
Specifying a null argument to the name parameter is equivalent to
Source.findNextStartTag(int) findNextElement(pos) .
Specifying an argument to the name parameter that ends in a colon (: ) searches for all elements
in the specified XML namespace.
This method also returns elements consisting of
tags if the specified name is not a valid
.
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. Parameters: name - the of the element to search for. the Element with the specified beginning at or immediately following the specified position in the source document, or null if none exists or the specified position is out of bounds. |
findNextElement | public Element findNextElement(int pos, String attributeName, String value, boolean valueCaseSensitive)(Code) | | Returns the
Element with the specified attribute name/value pair beginning at or immediately following the specified position in the source document.
This is equivalent to
Source.findNextStartTag(int,String,String,boolean) findNextStartTag(pos,attributeName,value,valueCaseSensitive) .
StartTag.getElement getElement() ,
assuming the result is not null .
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. Parameters: attributeName - the attribute name (case insensitive) to search for, must not be null . Parameters: value - the value of the specified attribute to search for, must not be null . Parameters: valueCaseSensitive - specifies whether the attribute value matching is case sensitive. the Element with the specified attribute name/value pair beginning at or immediately following the specified position in the source document, or null if none exists or the specified position is out of bounds. |
findNextEndTag | public EndTag findNextEndTag(int pos)(Code) | | Returns the
EndTag beginning at or immediately following the specified position in the source document.
See the
Tag class documentation for more details about the behaviour of this method.
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. the EndTag beginning at or immediately following the specified position in the source document, or null if none exists or the specified position is out of bounds. |
findNextEndTag | public EndTag findNextEndTag(int pos, String name)(Code) | | Returns the
EndTag with the specified
beginning at or immediately following the specified position in the source document.
See the
Tag class documentation for more details about the behaviour of this method.
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. Parameters: name - the of the end tag to search for, must not be null . the EndTag with the specified beginning at or immediately following the specified position in the source document, or null if none exists or the specified position is out of bounds. |
findNextEndTag | public EndTag findNextEndTag(int pos, String name, EndTagType endTagType)(Code) | | Returns the
EndTag with the specified
and
beginning at or immediately following the specified position in the source document.
See the
Tag class documentation for more details about the behaviour of this method.
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. Parameters: name - the of the end tag to search for, must not be null . Parameters: endTagType - the of the end tag to search for, must not be null . the EndTag with the specified and beginning at or immediately following the specified position in the source document, or null if none exists or the specified position is out of bounds. |
findNextStartTag | public StartTag findNextStartTag(int pos)(Code) | | Returns the
StartTag beginning at or immediately following the specified position in the source document.
See the
Tag class documentation for more details about the behaviour of this method.
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. the StartTag beginning at or immediately following the specified position in the source document, or null if none exists or the specified position is out of bounds. |
findNextStartTag | public StartTag findNextStartTag(int pos, String name)(Code) | | Returns the
StartTag with the specified
beginning at or immediately following the specified position in the source document.
See the
Tag class documentation for more details about the behaviour of this method.
Specifying a null argument to the name parameter is equivalent to
Source.findNextStartTag(int) findNextStartTag(pos) .
Specifying an argument to the name parameter that ends in a colon (: ) searches for all start tags
in the specified XML namespace.
This method also returns
tags if the specified name is not a valid
.
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. Parameters: name - the of the start tag to search for. the StartTag with the specified beginning at or immediately following the specified position in the source document, or null if none exists or the specified position is out of bounds. |
findNextStartTag | public StartTag findNextStartTag(int pos, String attributeName, String value, boolean valueCaseSensitive)(Code) | | Returns the
StartTag with the specified attribute name/value pair beginning at or immediately following the specified position in the source document.
See the
Tag class documentation for more details about the behaviour of this method.
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. Parameters: attributeName - the attribute name (case insensitive) to search for, must not be null . Parameters: value - the value of the specified attribute to search for, must not be null . Parameters: valueCaseSensitive - specifies whether the attribute value matching is case sensitive. the StartTag with the specified attribute name/value pair beginning at or immediately following the specified position in the source document, or null if none exists or the specified position is out of bounds. |
findNextTag | public Tag findNextTag(int pos)(Code) | | Returns the
Tag beginning at or immediately following the specified position in the source document.
See the
Tag class documentation for more details about the behaviour of this method.
Use
Tag.findNextTag to find the tag immediately following another tag.
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. the Tag beginning at or immediately following the specified position in the source document, or null if none exists or the specified position is out of bounds. |
findNextTag | public Tag findNextTag(int pos, TagType tagType)(Code) | | Returns the
Tag of the specified
beginning at or immediately following the specified position in the source document.
See the
Tag class documentation for more details about the behaviour of this method.
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. Parameters: tagType - the TagType to search for. the Tag with the specified beginning at or immediately following the specified position in the source document, or null if none exists or the specified position is out of bounds. |
findPreviousCharacterReference | public CharacterReference findPreviousCharacterReference(int pos)(Code) | | Returns the
CharacterReference at or immediately preceding (or
) the specified position in the source document.
Character references positioned within an HTML
are NOT ignored.
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. the CharacterReference beginning at or immediately preceding the specified position in the source document, or null if none exists or the specified position is out of bounds. |
findPreviousEndTag | public EndTag findPreviousEndTag(int pos)(Code) | | Returns the
EndTag beginning at or immediately preceding the specified position in the source document.
See the
Tag class documentation for more details about the behaviour of this method.
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. the EndTag beginning at or immediately preceding the specified position in the source document, or null if none exists or the specified position is out of bounds. |
findPreviousEndTag | public EndTag findPreviousEndTag(int pos, String name)(Code) | | Returns the
EndTag with the specified
at or immediately preceding (or
) the specified position in the source document.
See the
Tag class documentation for more details about the behaviour of this method.
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. Parameters: name - the of the end tag to search for, must not be null . the EndTag with the specified at or immediately preceding (or ) the specified position in the source document, or null if none exists or the specified position is out of bounds. |
findPreviousStartTag | public StartTag findPreviousStartTag(int pos)(Code) | | Returns the
StartTag at or immediately preceding (or
) the specified position in the source document.
See the
Tag class documentation for more details about the behaviour of this method.
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. the StartTag at or immediately preceding the specified position in the source document, or null if none exists or the specified position is out of bounds. |
findPreviousStartTag | public StartTag findPreviousStartTag(int pos, String name)(Code) | | Returns the
StartTag with the specified
at or immediately preceding (or
) the specified position in the source document.
See the
Tag class documentation for more details about the behaviour of this method.
Specifying a null argument to the name parameter is equivalent to
Source.findPreviousStartTag(int) findPreviousStartTag(pos) .
This method also returns
tags if the specified name is not a valid
.
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. Parameters: name - the of the start tag to search for. the StartTag with the specified at or immediately preceding the specified position in the source document, or null if none exists or the specified position is out of bounds. |
findPreviousTag | public Tag findPreviousTag(int pos)(Code) | | Returns the
Tag beginning at or immediately preceding (or
) the specified position in the source document.
See the
Tag class documentation for more details about the behaviour of this method.
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. the Tag beginning at or immediately preceding the specified position in the source document, or null if none exists or the specified position is out of bounds. |
findPreviousTag | public Tag findPreviousTag(int pos, TagType tagType)(Code) | | Returns the
Tag of the specified
beginning at or immediately preceding (or
) the specified position in the source document.
See the
Tag class documentation for more details about the behaviour of this method.
Parameters: pos - the position in the source document from which to start the search, may be out of bounds. Parameters: tagType - the TagType to search for. the Tag with the specified beginning at or immediately preceding the specified position in the source document, or null if none exists or the specified position is out of bounds. |
fullSequentialParse | public Tag[] fullSequentialParse()(Code) | | Parses all of the
in this source document sequentially from beginning to end.
Calling this method can greatly improve performance if most or all of the tags in the document need to be parsed.
Calling the
Source.findAllTags() ,
Source.findAllStartTags() ,
Source.findAllElements() or
Source.getChildElements() method on the Source object
performs a full sequential parse automatically.
There are however still circumstances where it should be called manually, such as when it is known that most or all of the tags in the document will need to be parsed,
but none of the abovementioned methods are used, or are called only after calling one or more other tag search methods.
If this method is called manually, is should be called soon after the Source object is created,
before any tag search methods are called.
By default, tags are parsed only as needed, which is referred to as parse on demand mode.
In this mode, every call to a tag search method that is not returning previously cached tags must perform a relatively complex check to determine whether a
potential tag is in a
.
Generally speaking, a tag is in a valid position if it does not appear inside any another tag.
can appear anywhere in a document, including inside other tags, so this relates only to non-server tags.
Theoretically, checking whether a specified position in the document is enclosed in another tag is only possible if every preceding tag has been parsed,
otherwise it is impossible to tell whether one of the delimiters of the enclosing tag was in fact enclosed by some other tag before it, thereby invalidating it.
When this method is called, each tag is parsed in sequence starting from the beginning of the document, making it easy to check whether each potential
tag is in a valid position.
In parse on demand mode a compromise technique must be used for this check, since the theoretical requirement of having parsed all preceding tags
is no longer practical.
This compromise involves only checking whether the position is enclosed by other tags with
.
The added complexity of this technique makes parsing each tag slower compared to when a full sequential parse is performed, but when only a few tags need
parsing this is an extremely beneficial trade-off.
The documentation of the
TagType#isValidPosition(Source, int pos, int[] fullSequentialParseData) method,
which is called internally by the parser to perform the valid position check,
includes a more detailed explanation of the differences between the two modes of operation.
Calling this method a second or subsequent time has no effect.
This method returns the same list of tags as the
Source.findAllTags Source.findAllTags() method, but as an array instead of a list.
If this method is called after any of the tag search methods are called,
the
is cleared of any previously found tags before being restocked via the full sequential parse.
This is significant if the
Segment.ignoreWhenParsing method has been called since the tags were first found, as any tags inside the
ignored segments will no longer be returned by any of the tag search methods.
See also the
Tag class documentation for more general details about how tags are parsed.
an array of all in this source document. |
getCacheDebugInfo | public String getCacheDebugInfo()(Code) | | Returns a string representation of the tag cache, useful for debugging purposes.
a string representation of the tag cache, useful for debugging purposes. |
getCharsetParameterFromHttpHeaderValue | static String getCharsetParameterFromHttpHeaderValue(String httpHeaderValue)(Code) | | |
getChildElements | public List getChildElements()(Code) | | Returns a list of the top-level
in the document element hierarchy.
The objects in the list are all of type
Element .
The term top-level element refers to an element that is not nested within any other element in the document.
The term document element hierarchy refers to the hierarchy of elements that make up this source document.
The source document itself is not considered to be part of the hierarchy, meaning there is typically more than one top-level element.
Even when the source represents an entire HTML document, the
and/or an
often exist as top-level elements along with the
HTMLElementName.HTML HTML element itself.
The
Element.getChildElements method can be used to get the children of the top-level elements, with recursive use providing a means to
visit every element in the document hierarchy.
The document element hierarchy differs from that of the Document Object Model
in that it is only a representation of the elements that are physically present in the source text. Unlike the DOM, it does not include any "implied" HTML elements
such as
HTMLElementName.TBODY TBODY if they are not present in the source text.
Elements formed from
are not included in the hierarchy at all.
Structural errors in this source document such as overlapping elements are reported in the
.
When elements are found to overlap, the position of the start tag determines the location of the element in the hierarchy.
Calling this method on the Source object performs a
automatically.
A visual representation of the document element hierarchy can be obtained by calling:
Source.getSourceFormatter() .
SourceFormatter.setIndentAllElements(boolean) setIndentAllElements(true) .
SourceFormatter.setCollapseWhiteSpace(boolean) setCollapseWhiteSpace(true) .
SourceFormatter.setTidyTags(boolean) setTidyTags(true) .
SourceFormatter.toString toString() a list of the top-level in the document element hierarchy, guaranteed not null . See Also: Element.getParentElement See Also: Element.getChildElements See Also: Element.getDepth |
getColumn | public int getColumn(int pos)(Code) | | Returns the column number of the specified character position in the source document.
Parameters: pos - the position in the source document. the column number of the specified character position in the source document. throws: IndexOutOfBoundsException - if the specified position is not within the bounds of the document. See Also: Source.getRow(int pos) See Also: Source.getRowColumnVector(int pos) |
getDocumentSpecifiedEncoding | public String getDocumentSpecifiedEncoding()(Code) | | Returns the document
specified within the text of the document.
The document encoding can be specified within the document text in two ways.
They are referred to generically in this library as an encoding specification,
and are listed below in order of precedence:
-
An encoding declaration within the
of an XML document,
which must be present if it has an encoding other than UTF-8
or UTF-16.
<?xml version="1.0" encoding="ISO-8859-1" ?>
-
A META declaration,
which is in the form of a
HTMLElementName.META META tag with attribute
http-equiv="Content-Type" .
The encoding is specified in the charset parameter of a
Content-Type
HTTP header value, which is placed in the value of the meta tag's content attribute.
This META declaration should appear as early as possible in the
HTMLElementName.HEAD HEAD element.
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
Both of these tags must only use characters in the range U+0000 to U+007F, and in the case of the META declaration
must use ASCII encoding. This, along with the fact that they must occur at or near the beginning of the document,
assists in their detection and decoding without the need to know the exact encoding of the full text.
the document specified within the text of the document, or null if no encoding is specified. See Also: Source.getEncoding() |
getElementById | public Element getElementById(String id)(Code) | | Returns the
Element with the specified id attribute value.
This simulates the script method
getElementById
defined in DOM HTML level 1.
This is equivalent to
Source.findNextStartTag(int,String,String,boolean) findNextStartTag (0,"id",id,true).
StartTag.getElement getElement() , assuming that the element exists.
A well formed HTML document should have no more than one element with any given id attribute value.
Parameters: id - the id attribute value (case sensitive) to search for, must not be null . the Element with the specified id attribute value, or null if no such element exists. |
getEncoding | public String getEncoding()(Code) | | Returns the character encoding scheme of the source byte stream used to create this object.
The encoding of a document defines how the original byte stream was encoded into characters.
The HTTP specification section 3.4
uses the term "character set" to refer to the encoding, and the term "charset" is similarly used in Java
(see the class java.nio.charset.Charset ).
This often causes confusion, as a modern "coded character set" such as Unicode
can have several encodings, such as UTF-8, UTF-16, and UTF-32.
See the Wikipedia character encoding article
for an explanation of the terminology.
This method makes the best possible effort to return the name of the encoding used to decode the original source byte stream
into character data. This decoding takes place in the constructor when a parameter based on a byte stream such as an
InputStream or URL is used to specify the source text.
The documentation of the
Source.Source(InputStream) and
Source.Source(URL) constructors describe how the return value of this
method is determined in these cases.
It is also possible in some circumstances for the encoding to be determined in the
Source.Source(Reader) constructor.
If a constructor was used that specifies the source text directly in character form (not requiring the decoding of a byte sequence)
then the document itself is searched for an encoding specification. In this case, this
method returns the same value as the
Source.getDocumentSpecifiedEncoding() method.
The
Source.getEncodingSpecificationInfo() method returns a simple description of how the value of this method was determined.
the character encoding scheme of the source byte stream used to create this object, or null if the encoding is not known. See Also: Source.getEncodingSpecificationInfo() |
getEncodingSpecificationInfo | public String getEncodingSpecificationInfo()(Code) | | Returns a concise description of how the
of the source document was determined.
The description is intended for informational purposes only.
It is not guaranteed to have any particular format and can not be reliably parsed.
a concise description of how the of the source document was determined. See Also: Source.getEncoding() |
getLogger | public Logger getLogger()(Code) | | Returns the
Logger that handles log messages.
A logger instance is created automatically for each Source object using the
LoggerProvider specified by the static
Config.LoggerProvider property.
This can be overridden by calling the
Source.setLogger(Logger) method.
The name used for all automatically created logger instances is "net.htmlparser.jericho ".
the Logger that handles log messages, or null if logging is disabled. |
getNewLine | public String getNewLine()(Code) | | Returns the newline character sequence used in the source document.
If the document does not contain any newline characters, this method returns null .
The three possible return values (aside from null ) are "\n" , "\r\n" and "\r" .
the newline character sequence used in the source document, or null if none is present. |
getParseText | final public ParseText getParseText()(Code) | | Returns the
of this source document.
This method is normally only of interest to users who wish to create custom tag types.
The parse text is defined as the entire text of the source document in lower case, with all
segments replaced by space characters.
the of this source document. |
getParsedTags | List getParsedTags()(Code) | | Gets a list of all the tags that have been parsed so far.
This information may be useful for debugging purposes.
Execution of this method collects information from the internal cache and is relatively expensive.
a list of all the tags that have been parsed so far. See Also: Source.getCacheDebugInfo() |
getPreliminaryEncodingInfo | public String getPreliminaryEncodingInfo()(Code) | | Returns the preliminary encoding of the source document together with a concise description of how it was determined.
It is sometimes necessary for the
Source.Source(InputStream) and
Source.Source(URL) constructors to search the document for an
encoding specification in order to determine the exact
of the source byte stream.
In order to search for the
before the exact encoding is known,
a preliminary encoding is determined using the first four bytes of the input stream.
Because the encoding specification must only use characters in the range U+0000 to U+007F, the preliminary encoding need only have the following
basic properties determined:
- Code unit size (8-bit, 16-bit or 32-bit)
- Byte order (big-endian or little-endian) if the code unit size is 16-bit or 32-bit
- Basic encoding of characters in the range U+0000 to U+007F (current implementation only distinguishes between ASCII and EBCDIC)
The encodings used to represent the most commonly encountered combinations of these basic properties are:
- ISO-8859-1: 8-bit ASCII-compatible encoding
- Cp037: 8-bit EBCDIC-compatible encoding
- UTF-16BE: 16-bit big-endian encoding
- UTF-16LE: 16-bit little-endian encoding
- UTF-32BE: 32-bit big-endian encoding (not supported on most java platforms)
- UTF-32LE: 32-bit little-endian encoding (not supported on most java platforms)
Note: all encodings with a code unit size greater than 8 bits are assumed to use an
ASCII-compatible low-order byte.
In some descriptions returned by this method, and the documentation below, a pattern is used to help demonstrate the contents of the first four bytes of the stream.
The patterns use the characters "00 " to signify a zero byte, "XX " to signify a non-zero byte, and "?? " to signify
a byte than can be either zero or non-zero.
The algorithm for determining the preliminary encoding is as follows:
- Byte pattern "
00 00 ..." : If the stream starts with two zero bytes, the default 32-bit big-endian encoding UTF-32BE is used.
- Byte pattern "
00 XX ..." : If the stream starts with a single zero byte, the default 16-bit big-endian encoding UTF-16BE is used.
- Byte pattern "
XX ?? 00 00 ..." : If the third and fourth bytes of the stream are zero, the default 32-bit little-endian encoding UTF-32LE is used.
- Byte pattern "
XX 00 ..." or "XX ?? XX 00 ..." : If the second or fourth byte of the stream is zero, the default 16-bit little-endian encoding UTF-16LE is used.
- Byte pattern "
XX XX 00 XX ..." : If the third byte of the stream is zero, the default 16-bit big-endian encoding UTF-16BE is used (assumes the first character is > U+00FF).
- Byte pattern "
4C XX XX XX ..." : If the first four bytes are consistent with the EBCDIC encoding of
an
("<?xm ") or
a
("<!DO "),
or any other string starting with the EBCDIC character '<' followed by three non-ASCII characters (8th bit set),
which is consistent with EBCDIC alphanumeric characters,
the default EBCDIC-compatible encoding
Cp037 is used.
- Byte pattern "
XX XX XX XX ..." : Otherwise, if all of the first four bytes of the stream are non-zero,
the default 8-bit ASCII-compatible encoding
ISO-8859-1 is used.
If it was not necessary to search for a
when determining the
of this source document from a byte stream, this method returns null .
See the documentation of the
Source.Source(InputStream) and
Source.Source(URL) constructors for more detailed information about when the detection of a
preliminary encoding is required.
The description returned by this method is intended for informational purposes only.
It is not guaranteed to have any particular format and can not be reliably parsed.
the preliminary encoding of the source document together with a concise description of how it was determined, or null if no preliminary encoding was required. See Also: Source.getEncoding() |
getSourceFormatter | public SourceFormatter getSourceFormatter()(Code) | | Formats the HTML source by laying out each non-inline-level element on a new line with an appropriate indent.
The output format can be configured by setting any number of properties on the returned
SourceFormatter instance before
.
To create a SourceFormatter instance based on a
Segment rather than an entire Source document,
use
instead.
an instance of SourceFormatter based on this source document. |
getTagAt | final public Tag getTagAt(int pos)(Code) | | Returns the
Tag at the specified position in the source document.
See the
Tag class documentation for more details about the behaviour of this method.
This method also returns
tags.
Parameters: pos - the position in the source document, may be out of bounds. the Tag at the specified position in the source document, or null if no tag exists at the specified position or it is out of bounds. |
ignoreWhenParsing | public void ignoreWhenParsing(int begin, int end)(Code) | | Causes the specified range of the source text to be ignored when parsing.
See the documentation of the
Segment.ignoreWhenParsing method for more information.
Parameters: begin - the beginning character position in the source text. Parameters: end - the end character position in the source text. |
ignoreWhenParsing | public void ignoreWhenParsing(Collection segments)(Code) | | Causes all of the segments in the specified collection to be ignored when parsing.
This is equivalent to calling
Segment.ignoreWhenParsing on each segment in the collection.
|
isLoggingEnabled | public boolean isLoggingEnabled()(Code) | | Indicates whether logging is currently enabled.
This method has been deprecated as of version 2.4 as its purpose was to allow efficient use of the
Source.log(String) method, which has been deprecated.
true if logging is currently enabled, otherwise false .Source.getLogger() |
isXML | public boolean isXML()(Code) | | Indicates whether the source document is likely to be XML.
The algorithm used to determine this is designed to be relatively inexpensive and to provide an accurate result in
most normal situations.
An exact determination of whether the source document is XML would require a much more complex analysis of the text.
The algorithm is as follows:
- If the document begins with an
, it is an XML document.
- If the document contains a
that contains the text
"
xhtml ", it is an XHTML document, and hence
also an XML document.
- If none of the above conditions are met, assume the document is normal HTML, and therefore not an XML document.
As of version 2.5, this method no longer returns true if the document doesn't contain an
HTMLElementName.HTML HTML element.
The library is often used to parse partial HTML documents, so the lack of an
HTMLElementName.HTML HTML element is not a reliable test for an XML document.
true if the source document is likely to be XML, otherwise false . |
log | public void log(String message)(Code) | | Writes the specified message to the log.
This method has been deprecated as of version 2.4 as logging is now perfomed via the
Logger interface
obtained via the
Source.getLogger() method.
Parameters: message - the message to logSource.getLogger() |
parseAttributes | public Attributes parseAttributes(int pos, int maxEnd)(Code) | | Parses any
Attributes starting at the specified position.
This method is only used in the unusual situation where attributes exist outside of a start tag.
The
StartTag.getAttributes method should be used in normal situations.
The returned Attributes segment always begins at pos ,
and ends at the end of the last attribute before either maxEnd or
the first occurrence of "/>" or ">" outside of a quoted attribute value, whichever comes first.
Only returns null if the segment contains a major syntactical error
or more than the
number of
minor syntactical errors.
This is equivalent to
Source.parseAttributes(int,int,int) parseAttributes (pos,maxEnd,
Attributes.getDefaultMaxErrorCount )} .
Parameters: pos - the position in the source document at the beginning of the attribute list, may be out of bounds. Parameters: maxEnd - the maximum end position of the attribute list, or -1 if no maximum. the Attributes starting at the specified position, or null if too many errors occur while parsing or the specified position is out of bounds. See Also: StartTag.getAttributes See Also: Segment.parseAttributes |
parseAttributes | public Attributes parseAttributes(int pos, int maxEnd, int maxErrorCount)(Code) | | Parses any
Attributes starting at the specified position.
This method is only used in the unusual situation where attributes exist outside of a start tag.
The
StartTag.getAttributes method should be used in normal situations.
Only returns null if the segment contains a major syntactical error
or more than the specified number of minor syntactical errors.
The maxErrorCount argument overrides the
.
See
Source.parseAttributes(int pos,int maxEnd) for more information.
Parameters: pos - the position in the source document at the beginning of the attribute list, may be out of bounds. Parameters: maxEnd - the maximum end position of the attribute list, or -1 if no maximum. Parameters: maxErrorCount - the maximum number of minor errors allowed while parsing. the Attributes starting at the specified position, or null if too many errors occur while parsing or the specified position is out of bounds. See Also: StartTag.getAttributes See Also: Source.parseAttributes(int pos,int MaxEnd) |
setLogger | public void setLogger(Logger logger)(Code) | | Sets the
Logger that handles log messages.
Specifying a null argument disables logging completely for operations performed on this Source object.
A logger instance is created automatically for each Source object using the
LoggerProvider specified by the static
Config.LoggerProvider property.
The name used for all automatically created logger instances is "net.htmlparser.jericho ".
Use of this method with a non-null argument is therefore not usually necessary,
unless specifying an instance of
WriterLogger or a user-defined
Logger implementation.
Parameters: logger - the logger that will handle log messages, or null to disable logging. See Also: Config.LoggerProvider |
toString | public String toString()(Code) | | Returns the source text as a String .
the source text as a String . |
|
|