加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

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

发布时间:2020-12-16 09:04:34 所属栏目:百科 来源:网络整理
导读:现象:Android使用XmlPullParser解析xml输入流出现unexpected token错误 原因:使用的xml文件放在res中,使用 getResources().openRawResource(R.xml.XXX)获取输入流,解析出现错误;后改将xml放在assets中,换用getResources().getAssets().open("xxx.xml")

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

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读