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

来源:互联网 发布:微商必备软件 编辑:程序博客网 时间:2024/06/05 19:05

现象: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")

0 0
原创粉丝点击