⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xmlreaderbase.java

📁 openlogic-jdom-1.1-all-src-1.zip 可以用于操作xml文件
💻 JAVA
📖 第 1 页 / 共 3 页
字号:
/*--  Copyright (C) 2000 Brett McLaughlin & Jason Hunter. All rights reserved.  Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:  1. Redistributions of source code must retain the above copyright    notice, this list of conditions, and the following disclaimer.  2. Redistributions in binary form must reproduce the above copyright    notice, this list of conditions, and the disclaimer that follows     these conditions in the documentation and/or other materials     provided with the distribution. 3. The name "JDOM" must not be used to endorse or promote products    derived from this software without prior written permission.  For    written permission, please contact license@jdom.org.  4. Products derived from this software may not be called "JDOM", nor    may "JDOM" appear in their name, without prior written permission    from the JDOM Project Management (pm@jdom.org).  In addition, we request (but do not require) that you include in the  end-user documentation provided with the redistribution and/or in the  software itself an acknowledgement equivalent to the following:     "This product includes software developed by the      JDOM Project (http://www.jdom.org/)." Alternatively, the acknowledgment may be graphical using the logos  available at http://www.jdom.org/images/logos. THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE JDOM AUTHORS OR THE PROJECT CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. This software consists of voluntary contributions made by many  individuals on behalf of the JDOM Project and was originally  created by Brett McLaughlin <brett@jdom.org> and  Jason Hunter <jhunter@jdom.org>.  For more information on the  JDOM Project, please see <http://www.jdom.org/>.  */package sax;import java.io.IOException;import org.xml.sax.Attributes;import org.xml.sax.ContentHandler;import org.xml.sax.DTDHandler;import org.xml.sax.EntityResolver;import org.xml.sax.ErrorHandler;import org.xml.sax.InputSource;import org.xml.sax.Locator;import org.xml.sax.SAXException;import org.xml.sax.SAXParseException;import org.xml.sax.SAXNotSupportedException;import org.xml.sax.SAXNotRecognizedException;import org.xml.sax.XMLReader;import org.xml.sax.ext.LexicalHandler;import org.xml.sax.helpers.AttributesImpl;import org.xml.sax.helpers.DefaultHandler;/** * Base class for implementing an XML reader. * * Adapted from David Megginson's XMLFilterImpl and XMLFilterBase. */public abstract class XMLReaderBase extends DefaultHandlerimplements LexicalHandler, XMLReader{        ////////////////////////////////////////////////////////////////////    // Constructors.    ////////////////////////////////////////////////////////////////////            /**     * Creates new XMLReaderBase.     */    public XMLReaderBase ()    {    }            ////////////////////////////////////////////////////////////////////    // Convenience methods.    ////////////////////////////////////////////////////////////////////    /**     * Start a new element without a qname or attributes.     *     * <p>This method will provide a default empty attribute     * list and an empty string for the qualified name. It invokes     * {@link #startElement(String, String, String, Attributes)}     * directly.</p>     *     * @param uri The element's Namespace URI.     * @param localName The element's local name.     * @exception org.xml.sax.SAXException If a filter     *            further down the chain raises an exception.     * @see org.xml.sax.ContentHandler#startElement     */    public void startElement (String uri, String localName)    throws SAXException    {        startElement(uri, localName, "", EMPTY_ATTS);    }    /**     * Start a new element without a Namespace URI or qname.     *     * <p>This method will provide an empty string for the     * Namespace URI, and empty string for the qualified name.     * It invokes     * {@link #startElement(String, String, String, Attributes)}     * directly.</p>     *     * @param localName The element's local name.     * @param atts The element's attribute list.     * @exception org.xml.sax.SAXException If a filter     *            further down the chain raises an exception.     * @see org.xml.sax.ContentHandler#startElement     */    public void startElement (String localName, Attributes atts)    throws SAXException    {        startElement("", localName, "", atts);    }    /**     * Start a new element without a Namespace URI, qname, or attributes.     *     * <p>This method will provide an empty string for the     * Namespace URI, and empty string for the qualified name,     * and a default empty attribute list. It invokes     * {@link #startElement(String, String, String, Attributes)}     * directly.</p>     *     * @param localName The element's local name.     * @exception org.xml.sax.SAXException If a filter     *            further down the chain raises an exception.     * @see org.xml.sax.ContentHandler#startElement     */    public void startElement (String localName)    throws SAXException    {        startElement("", localName, "", EMPTY_ATTS);    }    /**     * End an element without a qname.     *     * <p>This method will supply an empty string for the qName.     * It invokes {@link #endElement(String, String, String)}     * directly.</p>     *     * @param uri The element's Namespace URI.     * @param localName The element's local name.     * @exception org.xml.sax.SAXException If a filter     *            further down the chain raises an exception.     * @see org.xml.sax.ContentHandler#endElement     */    public void endElement (String uri, String localName)    throws SAXException    {        endElement(uri, localName, "");    }    /**     * End an element without a Namespace URI or qname.     *     * <p>This method will supply an empty string for the qName     * and an empty string for the Namespace URI.     * It invokes {@link #endElement(String, String, String)}     * directly.</p>     *     * @param localName The element's local name.     * @exception org.xml.sax.SAXException If a filter     *            further down the chain raises an exception.     * @see org.xml.sax.ContentHandler#endElement     */    public void endElement (String localName)    throws SAXException    {        endElement("", localName, "");    }    /**     * Add an empty element.     *     * Both a {@link #startElement startElement} and an     * {@link #endElement endElement} event will be passed on down     * the filter chain.     *     * @param uri The element's Namespace URI, or the empty string     *        if the element has no Namespace or if Namespace     *        processing is not being performed.     * @param localName The element's local name (without prefix).  This     *        parameter must be provided.     * @param qName The element's qualified name (with prefix), or     *        the empty string if none is available.  This parameter     *        is strictly advisory: the writer may or may not use     *        the prefix attached.     * @param atts The element's attribute list.     * @exception org.xml.sax.SAXException If a filter     *            further down the chain raises an exception.     * @see org.xml.sax.ContentHandler#startElement     * @see org.xml.sax.ContentHandler#endElement     */    public void emptyElement (String uri, String localName,    String qName, Attributes atts)    throws SAXException    {        startElement(uri, localName, qName, atts);        endElement(uri, localName, qName);    }     /**      * Add an empty element without a qname or attributes.      *      * <p>This method will supply an empty string for the qname      * and an empty attribute list.  It invokes      * {@link #emptyElement(String, String, String, Attributes)}      * directly.</p>      *      * @param uri The element's Namespace URI.      * @param localName The element's local name.      * @exception org.xml.sax.SAXException If a filter      *            further down the chain raises an exception.      * @see #emptyElement(String, String, String, Attributes)      */    public void emptyElement (String uri, String localName)    throws SAXException    {        emptyElement(uri, localName, "", EMPTY_ATTS);    }            /**     * Add an empty element without a Namespace URI or qname.     *     * <p>This method will provide an empty string for the     * Namespace URI, and empty string for the qualified name.     * It invokes     * {@link #emptyElement(String, String, String, Attributes)}     * directly.</p>     *     * @param localName The element's local name.     * @param atts The element's attribute list.     * @exception org.xml.sax.SAXException If a filter     *            further down the chain raises an exception.     * @see org.xml.sax.ContentHandler#startElement     */    public void emptyElement (String localName, Attributes atts)    throws SAXException    {        emptyElement("", localName, "", atts);    }    /**     * Add an empty element without a Namespace URI, qname or attributes.     *     * <p>This method will supply an empty string for the qname,     * and empty string for the Namespace URI, and an empty     * attribute list.  It invokes     * {@link #emptyElement(String, String, String, Attributes)}     * directly.</p>     *     * @param localName The element's local name.     * @exception org.xml.sax.SAXException If a filter     *            further down the chain raises an exception.      * @see #emptyElement(String, String, String, Attributes)     */    public void emptyElement (String localName)    throws SAXException    {        emptyElement("", localName, "", EMPTY_ATTS);    }    /**     * Add an element with character data content.     *     * <p>This is a convenience method to add a complete element     * with character data content, including the start tag     * and end tag.</p>     *     * <p>This method invokes     * {@link @see org.xml.sax.ContentHandler#startElement},     * followed by     * {@link #characters(String)}, followed by     * {@link @see org.xml.sax.ContentHandler#endElement}.</p>     *     * @param uri The element's Namespace URI.     * @param localName The element's local name.     * @param qName The element's default qualified name.     * @param atts The element's attributes.     * @param content The character data content.     * @exception org.xml.sax.SAXException If a filter     *            further down the chain raises an exception.     * @see org.xml.sax.ContentHandler#startElement     * @see #characters(String)     * @see org.xml.sax.ContentHandler#endElement     */    public void dataElement (String uri, String localName,                             String qName, Attributes atts,                             String content)    throws SAXException    {        startElement(uri, localName, qName, atts);        characters(content);        endElement(uri, localName, qName);    }    /**     * Add an element with character data content but no qname or attributes.     *     * <p>This is a convenience method to add a complete element     * with character data content, including the start tag     * and end tag.  This method provides an empty string     * for the qname and an empty attribute list. It invokes     * {@link #dataElement(String, String, String, Attributes, String)}}     * directly.</p>     *     * @param uri The element's Namespace URI.     * @param localName The element's local name.     * @param content The character data content.     * @exception org.xml.sax.SAXException If a filter     *            further down the chain raises an exception.     * @see org.xml.sax.ContentHandler#startElement     * @see #characters(String)     * @see org.xml.sax.ContentHandler#endElement     */    public void dataElement (String uri, String localName, String content)    throws SAXException    {        dataElement(uri, localName, "", EMPTY_ATTS, content);    }    /**     * Add an element with character data content but no Namespace URI or qname.     *     * <p>This is a convenience method to add a complete element     * with character data content, including the start tag     * and end tag.  The method provides an empty string for the     * Namespace URI, and empty string for the qualified name. It invokes     * {@link #dataElement(String, String, String, Attributes, String)}}     * directly.</p>     *     * @param localName The element's local name.     * @param atts The element's attributes.     * @param content The character data content.     * @exception org.xml.sax.SAXException If a filter     *            further down the chain raises an exception.     * @see org.xml.sax.ContentHandler#startElement     * @see #characters(String)     * @see org.xml.sax.ContentHandler#endElement     */    public void dataElement (String localName, Attributes atts, String content)    throws SAXException    {        dataElement("", localName, "", atts, content);    }    /**     * Add an element with character data content but no attributes     * or Namespace URI.     *     * <p>This is a convenience method to add a complete element     * with character data content, including the start tag     * and end tag.  The method provides an empty string for the     * Namespace URI, and empty string for the qualified name,     * and an empty attribute list. It invokes     * {@link #dataElement(String, String, String, Attributes, String)}}     * directly.</p>     *     * @param localName The element's local name.     * @param content The character data content.     * @exception org.xml.sax.SAXException If a filter     *            further down the chain raises an exception.     * @see org.xml.sax.ContentHandler#startElement     * @see #characters(String)     * @see org.xml.sax.ContentHandler#endElement

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -