您的位置:首页 > 其它

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

2015-07-01 21:51 232 查看

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

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: