XmlPullParser不能与InputStream一起使用

时间:2012-06-25 13:45:21

标签: android xml-parsing xmlpullparser

我在我的Android应用程序中使用XmlPullParser进行xml解析但是当我将输入设置为InputStream时它不起作用而我将输入设置为Reader它开始工作

XmlPullParserFactory factory = XmlPullParserFactory.newInstance();
factory.setNamespaceAware(true);
XmlPullParser xpp = factory.newPullParser();
xpp.setInput(obj,null);//obj is the object of InputStream
int eventType = xpp.getEventType();
while (eventType != XmlPullParser.END_DOCUMENT) {
                 logger.println("eventType.."+eventType);
              if(eventType == XmlPullParser.START_DOCUMENT) {

                     // control goes here only

              } else if(eventType == XmlPullParser.START_TAG) {
                  //This block never executed
                  }

              } else if(eventType == XmlPullParser.END_TAG) {
                 //This block never executed
              } else if(eventType == XmlPullParser.TEXT) {

              }
              eventType = xpp.next();
             }

即使我将来自InputStream对象的数据存储在字符串中并将该String设置为输入,那么此代码也可正常工作。

xpp.setInput(new StringReader(str));//str contains the data from InputStream

2 个答案:

答案 0 :(得分:3)

同样的问题:直接传递InputStream在Android 2.3.3上运行正常但在4.1上不起作用。 您可以使用xpp.setInput(new InputStreamReader(obj));

答案 1 :(得分:0)

在这个帖子中得到了来自yano的类似问题的答案:XmlPullParser - unexpected token (android)

您需要从res / xml文件移动到资源,并使用以下代码获取文件:

InputStream in = this.getAssets().open("sample.xml");

显然getRawResource()没有正确读取编码,如果你只是转储输入流的内容,那么就会有很多垃圾字符。