0

在 J2ME 中解析 xml 文件时出现错误

下面是错误

         org.xmlpull.v1.XmlPullParserException: precondition: START_TAG (position:END_TAG </ABC>@4:11 in java.io.InputStreamReader@e9eeb02a) 
       - org.kxml2.io.KXmlParser.exception(), bci=44
       - org.kxml2.io.KXmlParser.nextText(), bci=11
       - hello.Test.commandAction(Test.java:85)
       - javax.microedition.lcdui.Display$DisplayEventConsumerImpl.handleCommandEvent(), bci=296
       - com.sun.midp.lcdui.DisplayEventListener.process(), bci=467
       - com.sun.midp.events.EventQueue.run(), bci=182
       - java.lang.Thread.run(), bci=5

下面是代码

       this.in = getClass().getResourceAsStream("/"+
                this.engWord.getString().trim().toUpperCase().charAt(0)
                        + ".xml");
        this.is = new InputStreamReader(this.in);
        this.parser.setInput(this.is);
        this.parser.nextTag();
        this.parser.require(2, null, "Test");

下面是xml文件

                <TEST>
                  <ABC>
                     a deux
                  </ABC>
                    <DEF>
                     MOTHER 
                    </DEF>
                 </TEST>
4

1 回答 1

0

问题是标签“Test”与“TEST”不匹配。require 方法适用于区分大小写。

于 2013-06-28T08:14:44.497 回答