亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? xmlpullparser.java

?? 一個用于J2ME解析xml的工具,KXML,
?? JAVA
?? 第 1 頁 / 共 3 頁
字號:
/* -*-             c-basic-offset: 4; indent-tabs-mode: nil; -*-  //------100-columns-wide------>|*/// for license please see accompanying LICENSE.txt file (available also at http://www.xmlpull.org/)package org.xmlpull.v1;import java.io.InputStream;import java.io.IOException;import java.io.Reader;/** * XML Pull Parser is an interface that defines parsing functionlity provided * in <a href="http://www.xmlpull.org/">XMLPULL V1 API</a> (visit this website to * learn more about API and its implementations). * * <p>There are following different * kinds of parser depending on which features are set:<ul> * <li><b>non-validating</b> parser as defined in XML 1.0 spec when *   FEATURE_PROCESS_DOCDECL is set to true * <li><b>validating parser</b> as defined in XML 1.0 spec when *   FEATURE_VALIDATION is true (and that implies that FEATURE_PROCESS_DOCDECL is true) * <li>when FEATURE_PROCESS_DOCDECL is false (this is default and *   if different value is required necessary must be changed before parsing is started) *   then parser behaves like XML 1.0 compliant non-validating parser under condition that *  <em>no DOCDECL is present</em> in XML documents *   (internal entites can still be defined with defineEntityReplacementText()). *   This mode of operation is intened <b>for operation in constrained environments</b> such as J2ME. * </ul> * * * <p>There are two key methods: next() and nextToken(). While next() provides * access to high level parsing events, nextToken() allows access to lower * level tokens. * * <p>The current event state of the parser * can be determined by calling the * <a href="#getEventType()">getEventType()</a> method. * Initially, the parser is in the <a href="#START_DOCUMENT">START_DOCUMENT</a> * state. * * <p>The method <a href="#next()">next()</a> advances the parser to the * next event. The int value returned from next determines the current parser * state and is identical to the value returned from following calls to * getEventType (). * * <p>Th following event types are seen by next()<dl> * <dt><a href="#START_TAG">START_TAG</a><dd> An XML start tag was read. * <dt><a href="#TEXT">TEXT</a><dd> Text content was read; * the text content can be retreived using the getText() method. *  (when in validating mode next() will not report ignorable whitespaces, use nextToken() instead) * <dt><a href="#END_TAG">END_TAG</a><dd> An end tag was read * <dt><a href="#END_DOCUMENT">END_DOCUMENT</a><dd> No more events are available * </dl> * * <p>after first next() or nextToken() (or any other next*() method) * is called user application can obtain * XML version, standalone and encoding from XML declaration * in following ways:<ul> * <li><b>version</b>: *  getProperty(&quot;<a href="http://xmlpull.org/v1/doc/properties.html#xmldecl-version">http://xmlpull.org/v1/doc/properties.html#xmldecl-version</a>&quot;) *       returns String ("1.0") or null if XMLDecl was not read or if property is not supported * <li><b>standalone</b>: *  getProperty(&quot;<a href="http://xmlpull.org/v1/doc/features.html#xmldecl-standalone">http://xmlpull.org/v1/doc/features.html#xmldecl-standalone</a>&quot;) *       returns Boolean: null if there was no standalone declaration *  or if property is not supported *         otherwise returns Boolean(true) if standalon="yes" and Boolean(false) when standalone="no" * <li><b>encoding</b>: obtained from getInputEncoding() *       null if stream had unknown encoding (not set in setInputStream) *           and it was not declared in XMLDecl * </ul> * * A minimal example for using this API may look as follows: * <pre> * import java.io.IOException; * import java.io.StringReader; * * import org.xmlpull.v1.XmlPullParser; * import org.xmlpull.v1.<a href="XmlPullParserException.html">XmlPullParserException.html</a>; * import org.xmlpull.v1.<a href="XmlPullParserFactory.html">XmlPullParserFactory</a>; * * public class SimpleXmlPullApp * { * *     public static void main (String args[]) *         throws XmlPullParserException, IOException *     { *         XmlPullParserFactory factory = XmlPullParserFactory.newInstance(); *         factory.setNamespaceAware(true); *         XmlPullParser xpp = factory.newPullParser(); * *         xpp.<a href="#setInput">setInput</a>( new StringReader ( "&lt;foo>Hello World!&lt;/foo>" ) ); *         int eventType = xpp.getEventType(); *         while (eventType != XmlPullParser.END_DOCUMENT) { *          if(eventType == XmlPullParser.START_DOCUMENT) { *              System.out.println("Start document"); *          } else if(eventType == XmlPullParser.END_DOCUMENT) { *              System.out.println("End document"); *          } else if(eventType == XmlPullParser.START_TAG) { *              System.out.println("Start tag "+xpp.<a href="#getName()">getName()</a>); *          } else if(eventType == XmlPullParser.END_TAG) { *              System.out.println("End tag "+xpp.getName()); *          } else if(eventType == XmlPullParser.TEXT) { *              System.out.println("Text "+xpp.<a href="#getText()">getText()</a>); *          } *          eventType = xpp.next(); *         } *     } * } * </pre> * * <p>The above example will generate the following output: * <pre> * Start document * Start tag foo * Text Hello World! * End tag foo * </pre> * * <p>For more details on API usage, please refer to the * quick Introduction available at <a href="http://www.xmlpull.org">http://www.xmlpull.org</a> * * @see XmlPullParserFactory * @see #defineEntityReplacementText * @see #getName * @see #getNamespace * @see #getText * @see #next * @see #nextToken * @see #setInput * @see #FEATURE_PROCESS_DOCDECL * @see #FEATURE_VALIDATION * @see #START_DOCUMENT * @see #START_TAG * @see #TEXT * @see #END_TAG * @see #END_DOCUMENT * * @author <a href="http://www-ai.cs.uni-dortmund.de/PERSONAL/haustein.html">Stefan Haustein</a> * @author <a href="http://www.extreme.indiana.edu/~aslom/">Aleksander Slominski</a> */public interface XmlPullParser {    /** This constant represents the default namespace (empty string "") */    String NO_NAMESPACE = "";    // ----------------------------------------------------------------------------    // EVENT TYPES as reported by next()    /**     * Signalize that parser is at the very beginning of the document     * and nothing was read yet.     * This event type can only be observed by calling getEvent()     * before the first call to next(), nextToken, or nextTag()</a>).     *     * @see #next     * @see #nextToken     */    int START_DOCUMENT = 0;    /**     * Logical end of the xml document. Returned from getEventType, next()     * and nextToken()     * when the end of the input document has been reached.     * <p><strong>NOTE:</strong> calling again     * <a href="#next()">next()</a> or <a href="#nextToken()">nextToken()</a>     * will result in exception being thrown.     *     * @see #next     * @see #nextToken     */    int END_DOCUMENT = 1;    /**     * Returned from getEventType(),     * <a href="#next()">next()</a>, <a href="#nextToken()">nextToken()</a> when     * a start tag was read.     * The name of start tag is available from getName(), its namespace and prefix are     * available from getNamespace() and getPrefix()     * if <a href='#FEATURE_PROCESS_NAMESPACES'>namespaces are enabled</a>.     * See getAttribute* methods to retrieve element attributes.     * See getNamespace* methods to retrieve newly declared namespaces.     *     * @see #next     * @see #nextToken     * @see #getName     * @see #getPrefix     * @see #getNamespace     * @see #getAttributeCount     * @see #getDepth     * @see #getNamespaceCount     * @see #getNamespace     * @see #FEATURE_PROCESS_NAMESPACES     */    int START_TAG = 2;    /**     * Returned from getEventType(), <a href="#next()">next()</a>, or     * <a href="#nextToken()">nextToken()</a> when an end tag was read.     * The name of start tag is available from getName(), its     * namespace and prefix are     * available from getNamespace() and getPrefix().     *     * @see #next     * @see #nextToken     * @see #getName     * @see #getPrefix     * @see #getNamespace     * @see #FEATURE_PROCESS_NAMESPACES     */    int END_TAG = 3;    /**     * Character data was read and will is available by calling getText().     * <p><strong>Please note:</strong> <a href="#next()">next()</a> will     * accumulate multiple     * events into one TEXT event, skipping IGNORABLE_WHITESPACE,     * PROCESSING_INSTRUCTION and COMMENT events,     * In contrast, <a href="#nextToken()">nextToken()</a> will stop reading     * text when any other event is observed.     * Also, when the state was reached by calling next(), the text value will     * be normalized, whereas getText() will     * return unnormalized content in the case of nextToken(). This allows     * an exact roundtrip without chnanging line ends when examining low     * level events, whereas for high level applications the text is     * normalized apropriately.     *     * @see #next     * @see #nextToken     * @see #getText     */    int TEXT = 4;    // ----------------------------------------------------------------------------    // additional events exposed by lower level nextToken()    /**     * A CDATA sections was just read;     * this token is available only from calls to <a href="#nextToken()">nextToken()</a>.     * A call to next() will accumulate various text events into a single event     * of type TEXT. The text contained in the CDATA section is available     * by callling getText().     *     * @see #nextToken     * @see #getText     */    int CDSECT = 5;    /**     * An entity reference was just read;     * this token is available from <a href="#nextToken()">nextToken()</a>     * only. The entity name is available by calling getName(). If available,     * the replacement text can be obtained by calling getTextt(); otherwise,     * the user is responsibile for resolving the entity reference.     * This event type is never returned from next(); next() will     * accumulate the replacement text and other text     * events to a single TEXT event.     *     * @see #nextToken     * @see #getText     */    int ENTITY_REF = 6;    /**     * Ignorable whitespace was just read.     * This token is available only from <a href="#nextToken()">nextToken()</a>).     * For non-validating     * parsers, this event is only reported by nextToken() when outside     * the root element.     * Validating parsers may be able to detect ignorable whitespace at     * other locations.     * The ignorable whitespace string is available by calling getText()     *     * <p><strong>NOTE:</strong> this is different from calling the     *  isWhitespace() method, since text content     *  may be whitespace but not ignorable.     *     * Ignorable whitespace is skipped by next() automatically; this event     * type is never returned from next().     *     * @see #nextToken     * @see #getText     */    int IGNORABLE_WHITESPACE = 7;    /**     * An XML processing instruction declaration was just read. This     * event type is available only via <a href="#nextToken()">nextToken()</a>.     * getText() will return text that is inside the processing instruction.     * Calls to next() will skip processing instructions automatically.     * @see #nextToken     * @see #getText     */    int PROCESSING_INSTRUCTION = 8;    /**     * An XML comment was just read. This event type is this token is     * available via <a href="#nextToken()">nextToken()</a> only;     * calls to next() will skip comments automatically.     * The content of the comment can be accessed using the getText()     * method.     *     * @see #nextToken     * @see #getText     */    int COMMENT = 9;    /**     * An XML document type declaration was just read. This token is     * available from <a href="#nextToken()">nextToken()</a> only.     * The unparsed text inside the doctype is available via     * the getText() method.     *     * @see #nextToken     * @see #getText     */    int DOCDECL = 10;    /**     * This array can be used to convert the event type integer constants     * such as START_TAG or TEXT to     * to a string. For example, the value of TYPES[START_TAG] is     * the string "START_TAG".     *     * This array is intended for diagnostic output only. Relying     * on the contents of the array may be dangerous since malicous     * applications may alter the array, although it is final, due     * to limitations of the Java language.     */    String [] TYPES = {        "START_DOCUMENT",            "END_DOCUMENT",            "START_TAG",            "END_TAG",            "TEXT",            "CDSECT",            "ENTITY_REF",            "IGNORABLE_WHITESPACE",            "PROCESSING_INSTRUCTION",            "COMMENT",            "DOCDECL"    };    // ----------------------------------------------------------------------------    // namespace related features    /**     * This feature determines whether the parser processes     * namespaces. As for all features, the default value is false.     * <p><strong>NOTE:</strong> The value can not be changed during     * parsing an must be set before parsing.     *     * @see #getFeature     * @see #setFeature     */    String FEATURE_PROCESS_NAMESPACES =        "http://xmlpull.org/v1/doc/features.html#process-namespaces";    /**     * This feature determines whether namespace attributes are     * exposed via the attribute access methods. Like all features,     * the default value is false. This feature cannot be changed     * during parsing.     *     * @see #getFeature     * @see #setFeature     */    String FEATURE_REPORT_NAMESPACE_ATTRIBUTES =        "http://xmlpull.org/v1/doc/features.html#report-namespace-prefixes";    /**     * This feature determines whether the document declaration

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
丁香婷婷综合五月| 91成人国产精品| 一本到一区二区三区| 日韩一区二区免费高清| 国产精品国产三级国产aⅴ无密码| 亚洲一区二区三区影院| 懂色av一区二区三区免费看| 欧美精品色综合| 亚洲人xxxx| 国产激情视频一区二区在线观看| 欧美伊人久久久久久午夜久久久久| 久久综合色之久久综合| 亚洲成a人片在线观看中文| 成人综合在线观看| 日韩免费性生活视频播放| 亚洲图片有声小说| av激情综合网| 久久精品夜色噜噜亚洲aⅴ| 日韩av网站在线观看| 91国产成人在线| 日本一区二区成人| 国产一区二区三区国产| 欧美一区二区三区啪啪| 亚洲大片在线观看| 在线观看视频欧美| 亚洲欧美电影院| www.欧美日韩| 国产精品电影院| 波多野结衣中文字幕一区| 国产欧美日韩精品在线| 精品一区二区三区免费视频| 欧美一级欧美一级在线播放| 视频一区二区三区入口| 欧美高清激情brazzers| 日韩精品欧美成人高清一区二区| 精品视频全国免费看| 亚洲地区一二三色| 欧美日韩一区二区三区不卡| 亚洲成a人v欧美综合天堂下载| 欧美在线观看一区| 亚洲高清不卡在线| 欧美高清一级片在线| 男女男精品网站| www欧美成人18+| 粉嫩蜜臀av国产精品网站| 国产欧美一区二区精品性| 成人综合婷婷国产精品久久免费| 国产精品麻豆视频| 色综合久久精品| 午夜精品在线看| 日韩欧美一二三四区| 国产成人在线视频免费播放| 国产精品麻豆网站| 欧美亚洲高清一区| 另类综合日韩欧美亚洲| 国产三级精品在线| 色综合久久久久久久久久久| 午夜亚洲国产au精品一区二区| 欧美一区永久视频免费观看| 国产精品99久久久久| 亚洲啪啪综合av一区二区三区| 欧美四级电影在线观看| 免费观看在线综合| 国产色产综合色产在线视频| 99久久精品国产毛片| 日韩不卡一区二区| 中文字幕精品—区二区四季| 欧美日韩亚洲综合| 国产成人av网站| 亚洲一区二区视频| 久久精品在线观看| 欧美精三区欧美精三区| 国产精品一级黄| 亚洲午夜免费电影| 日本一区二区三级电影在线观看 | 国内欧美视频一区二区| 国产精品久久久久久一区二区三区| 欧美色男人天堂| 国产一区在线不卡| 亚欧色一区w666天堂| 国产精品视频一二三区| 3atv一区二区三区| eeuss鲁片一区二区三区 | 欧美绝品在线观看成人午夜影视| 久久精品国产77777蜜臀| 一区二区三区欧美日韩| 日韩三级电影网址| 在线看日韩精品电影| 国产精品白丝jk白祙喷水网站| 亚洲va欧美va人人爽午夜| 久久九九99视频| 精品久久五月天| 欧美久久久一区| 91福利区一区二区三区| 福利视频网站一区二区三区| 久久国产精品色| 天堂一区二区在线免费观看| 亚洲精品国产a| 中文字幕永久在线不卡| 国产亚洲婷婷免费| 欧美一卡二卡在线| 欧美福利视频一区| 欧美日韩亚洲国产综合| 97se亚洲国产综合自在线| 成人性生交大片免费看在线播放| 亚洲aaa精品| 国产精品视频一二三区| 99久久精品国产毛片| 国产美女在线精品| 韩国av一区二区三区| 久久国产免费看| 蜜臀99久久精品久久久久久软件| 午夜视频在线观看一区二区三区| 亚洲日本免费电影| 国产精品的网站| 国产精品久久久久影院亚瑟| 国产精品网曝门| 国产精品福利av| 亚洲精品国产高清久久伦理二区| 成人免费在线视频| 亚洲少妇中出一区| 亚洲日本在线天堂| 一区二区三区精品在线| 亚洲一区视频在线| 午夜欧美在线一二页| 日本欧美韩国一区三区| 蓝色福利精品导航| 经典三级视频一区| 国产成人啪午夜精品网站男同| 国产一区二区福利视频| 国产成人精品亚洲日本在线桃色| 岛国av在线一区| 色狠狠桃花综合| 欧美精品xxxxbbbb| 欧美电视剧在线看免费| 中文字幕免费在线观看视频一区| 国产精品免费免费| 亚洲国产sm捆绑调教视频 | 色哟哟在线观看一区二区三区| 91久久免费观看| 欧美一区二区三区四区高清 | 久久久蜜桃精品| 国产精品久久精品日日| 亚洲欧美日韩在线不卡| 亚洲国产欧美在线人成| 久久99蜜桃精品| 不卡一二三区首页| 欧美精品在欧美一区二区少妇| 精品噜噜噜噜久久久久久久久试看| 国产日韩精品一区| 亚洲综合区在线| 国产主播一区二区三区| 91一区在线观看| 欧美一区二区不卡视频| 国产精品高清亚洲| 美女性感视频久久| 99精品热视频| 欧美va在线播放| 亚洲欧美一区二区三区孕妇| 久久国产综合精品| 91麻豆6部合集magnet| 日韩精品在线看片z| 亚洲人午夜精品天堂一二香蕉| 欧美a一区二区| 日本韩国一区二区三区视频| 久久综合999| 午夜国产不卡在线观看视频| 国产成人免费在线观看| 日韩一级片网址| 亚洲男同1069视频| 粉嫩一区二区三区在线看 | 色网综合在线观看| 精品日韩欧美一区二区| 亚洲电影中文字幕在线观看| 国产v综合v亚洲欧| 日韩一级片网站| 亚洲18影院在线观看| 99久久久久久| 国产精品免费aⅴ片在线观看| 日韩精品乱码av一区二区| 日本福利一区二区| 国产精品久久网站| 国产一区二区三区蝌蚪| 日韩一区二区电影| 日韩电影免费在线看| 91国产免费观看| 亚洲精品乱码久久久久久久久 | 亚洲欧洲中文日韩久久av乱码| 国产一区美女在线| 欧美电影免费提供在线观看| 青草国产精品久久久久久| 欧美午夜精品久久久久久超碰 | 91免费视频大全| 国产精品不卡视频| www.亚洲国产| 国产精品国产精品国产专区不蜜| 国产成人啪午夜精品网站男同| 久久男人中文字幕资源站| 国产在线精品一区二区夜色| 精品三级av在线|