【Bug记录】Anroid解析xml 出现unexpected token错误

前端之家收集整理的这篇文章主要介绍了【Bug记录】Anroid解析xml 出现unexpected token错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

现象:Android使用XmlPullParser解析xml输入流出现unexpected token错误

原因:使用的xml文件放在res中,使用getResources().openRawResource(R.xml.XXX)获取输入流,解析出现错误;后改将xml放在assets中,换用getResources().getAssets().open("xxx.xml")方法获取stream,问题解决

分析:百度到一分析:

Where do you store your xml file? In "res" folder. You should store it in "assets". Res-solution is not working because of specific of the "res" folder and it's presentation in the apk. Move your file to the "assets" and you'll see that everything is working. Use the following code for creating InputSource:

getAssets().open("yourfilename.xml")
原文链接:https://www.f2er.com/xml/296551.html

猜你在找的XML相关文章