📄 contenthandler.html
字号:
<p>Note that the attribute list provided will contain only attributes with explicit values (specified or defaulted): #IMPLIED attributes will be omitted. The attribute list will contain attributes used for Namespace declarations (xmlns* attributes) only if the <code>http://xml.org/sax/features/namespace-prefixes</code> property is true (it is false by default, and support for a true value is optional).</p><DD><DL><DT><B>Parameters:</B><DD><CODE>uri</CODE> - The Namespace URI, or the empty string if the element has no Namespace URI or if Namespace processing is not being performed.<DD><CODE>localName</CODE> - The local name (without prefix), or the empty string if Namespace processing is not being performed.<DD><CODE>qName</CODE> - The qualified name (with prefix), or the empty string if qualified names are not available.<DD><CODE>atts</CODE> - The attributes attached to the element. If there are no attributes, it shall be an empty Attributes object.<DT><B>Throws:</B><DD><CODE><A HREF="../../../org/xml/sax/SAXException.html">SAXException</A></CODE> - Any SAX exception, possibly wrapping another exception.<DT><B>See Also: </B><DD><A HREF="../../../org/xml/sax/ContentHandler.html#endElement(java.lang.String, java.lang.String, java.lang.String)"><CODE>endElement(java.lang.String, java.lang.String, java.lang.String)</CODE></A>, <A HREF="../../../org/xml/sax/Attributes.html"><CODE>Attributes</CODE></A></DL></DD></DL><HR><A NAME="endElement(java.lang.String, java.lang.String, java.lang.String)"><!-- --></A><H3>endElement</H3><PRE>public void <B>endElement</B>(java.lang.String namespaceURI, java.lang.String localName, java.lang.String qName) throws <A HREF="../../../org/xml/sax/SAXException.html">SAXException</A></PRE><DL><DD>Receive notification of the end of an element. <p>The SAX parser will invoke this method at the end of every element in the XML document; there will be a corresponding <A HREF="../../../org/xml/sax/ContentHandler.html#startElement(java.lang.String, java.lang.String, java.lang.String, org.xml.sax.Attributes)"><CODE>startElement</CODE></A> event for every endElement event (even when the element is empty).</p> <p>For information on the names, see startElement.</p><DD><DL><DT><B>Parameters:</B><DD><CODE>uri</CODE> - The Namespace URI, or the empty string if the element has no Namespace URI or if Namespace processing is not being performed.<DD><CODE>localName</CODE> - The local name (without prefix), or the empty string if Namespace processing is not being performed.<DD><CODE>qName</CODE> - The qualified XML 1.0 name (with prefix), or the empty string if qualified names are not available.<DT><B>Throws:</B><DD><CODE><A HREF="../../../org/xml/sax/SAXException.html">SAXException</A></CODE> - Any SAX exception, possibly wrapping another exception.</DL></DD></DL><HR><A NAME="characters(char[], int, int)"><!-- --></A><H3>characters</H3><PRE>public void <B>characters</B>(char[] ch, int start, int length) throws <A HREF="../../../org/xml/sax/SAXException.html">SAXException</A></PRE><DL><DD>Receive notification of character data. <p>The Parser will call this method to report each chunk of character data. SAX parsers may return all contiguous character data in a single chunk, or they may split it into several chunks; however, all of the characters in any single event must come from the same external entity so that the Locator provides useful information.</p> <p>The application must not attempt to read from the array outside of the specified range.</p> <p>Note that some parsers will report whitespace in element content using the <A HREF="../../../org/xml/sax/ContentHandler.html#ignorableWhitespace(char[], int, int)"><CODE>ignorableWhitespace</CODE></A> method rather than this one (validating parsers <em>must</em> do so).</p><DD><DL><DT><B>Parameters:</B><DD><CODE>ch</CODE> - The characters from the XML document.<DD><CODE>start</CODE> - The start position in the array.<DD><CODE>length</CODE> - The number of characters to read from the array.<DT><B>Throws:</B><DD><CODE><A HREF="../../../org/xml/sax/SAXException.html">SAXException</A></CODE> - Any SAX exception, possibly wrapping another exception.<DT><B>See Also: </B><DD><A HREF="../../../org/xml/sax/ContentHandler.html#ignorableWhitespace(char[], int, int)"><CODE>ignorableWhitespace(char[], int, int)</CODE></A>, <A HREF="../../../org/xml/sax/Locator.html"><CODE>Locator</CODE></A></DL></DD></DL><HR><A NAME="ignorableWhitespace(char[], int, int)"><!-- --></A><H3>ignorableWhitespace</H3><PRE>public void <B>ignorableWhitespace</B>(char[] ch, int start, int length) throws <A HREF="../../../org/xml/sax/SAXException.html">SAXException</A></PRE><DL><DD>Receive notification of ignorable whitespace in element content. <p>Validating Parsers must use this method to report each chunk of whitespace in element content (see the W3C XML 1.0 recommendation, section 2.10): non-validating parsers may also use this method if they are capable of parsing and using content models.</p> <p>SAX parsers may return all contiguous whitespace in a single chunk, or they may split it into several chunks; however, all of the characters in any single event must come from the same external entity, so that the Locator provides useful information.</p> <p>The application must not attempt to read from the array outside of the specified range.</p><DD><DL><DT><B>Parameters:</B><DD><CODE>ch</CODE> - The characters from the XML document.<DD><CODE>start</CODE> - The start position in the array.<DD><CODE>length</CODE> - The number of characters to read from the array.<DT><B>Throws:</B><DD><CODE><A HREF="../../../org/xml/sax/SAXException.html">SAXException</A></CODE> - Any SAX exception, possibly wrapping another exception.<DT><B>See Also: </B><DD><A HREF="../../../org/xml/sax/ContentHandler.html#characters(char[], int, int)"><CODE>characters(char[], int, int)</CODE></A></DL></DD></DL><HR><A NAME="processingInstruction(java.lang.String, java.lang.String)"><!-- --></A><H3>processingInstruction</H3><PRE>public void <B>processingInstruction</B>(java.lang.String target, java.lang.String data) throws <A HREF="../../../org/xml/sax/SAXException.html">SAXException</A></PRE><DL><DD>Receive notification of a processing instruction. <p>The Parser will invoke this method once for each processing instruction found: note that processing instructions may occur before or after the main document element.</p> <p>A SAX parser must never report an XML declaration (XML 1.0, section 2.8) or a text declaration (XML 1.0, section 4.3.1) using this method.</p><DD><DL><DT><B>Parameters:</B><DD><CODE>target</CODE> - The processing instruction target.<DD><CODE>data</CODE> - The processing instruction data, or null if none was supplied. The data does not include any whitespace separating it from the target.<DT><B>Throws:</B><DD><CODE><A HREF="../../../org/xml/sax/SAXException.html">SAXException</A></CODE> - Any SAX exception, possibly wrapping another exception.</DL></DD></DL><HR><A NAME="skippedEntity(java.lang.String)"><!-- --></A><H3>skippedEntity</H3><PRE>public void <B>skippedEntity</B>(java.lang.String name) throws <A HREF="../../../org/xml/sax/SAXException.html">SAXException</A></PRE><DL><DD>Receive notification of a skipped entity. <p>The Parser will invoke this method once for each entity skipped. Non-validating processors may skip entities if they have not seen the declarations (because, for example, the entity was declared in an external DTD subset). All processors may skip external entities, depending on the values of the <code>http://xml.org/sax/features/external-general-entities</code> and the <code>http://xml.org/sax/features/external-parameter-entities</code> properties.</p><DD><DL><DT><B>Parameters:</B><DD><CODE>name</CODE> - The name of the skipped entity. If it is a parameter entity, the name will begin with '%', and if it is the external DTD subset, it will be the string "[dtd]".<DT><B>Throws:</B><DD><CODE><A HREF="../../../org/xml/sax/SAXException.html">SAXException</A></CODE> - Any SAX exception, possibly wrapping another exception.</DL></DD></DL><!-- ========= END OF CLASS DATA ========= --><HR><!-- ========== START OF NAVBAR ========== --><A NAME="navbar_bottom"><!-- --></A><TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0"><TR><TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"><A NAME="navbar_bottom_firstrow"><!-- --></A><TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3"> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/ContentHandler.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD> </TR></TABLE></TD><TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM></EM></TD></TR><TR><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../org/xml/sax/Attributes.html"><B>PREV CLASS</B></A> <A HREF="../../../org/xml/sax/DocumentHandler.html"><B>NEXT CLASS</B></A></FONT></TD><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../index.html" TARGET="_top"><B>FRAMES</B></A> <A HREF="ContentHandler.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD></TR><TR><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY: INNER | FIELD | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">DETAIL: FIELD | CONSTR | <A HREF="#method_detail">METHOD</A></FONT></TD></TR></TABLE><!-- =========== END OF NAVBAR =========== --><HR></BODY></HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -