我正在使用下面的代码使用拉解析器从内部存储中解析 xml 文件,但它会强制关闭应用程序,请建议我..!
FileInputStream fis = getApplicationContext().openFileInput("abc.xml");
XmlPullParserFactory factory = XmlPullParserFactory.newInstance();
factory.setNamespaceAware(true);
xpp = factory.newPullParser();
xpp.setInput(fis,null);
eventtype = xpp.getEventType();
存储在平板电脑内存中的文件“abc.xml”我无法解析它。“abc.xml”文件内容与 res/xml/abc.xml 文件夹相同,此处解析成功。
谢谢你。