XMLPullParser 结束标记错误
我正在解析的一些传入 RSS 中有一个松散的 html img 标签。意思是没有结束标记。我对传入的源的控制为零,所以我陷入了困境。无论如何我可以跳过这个标签吗?一切正常,直到我击中标签。
这是一个例外。
06-07 15:46:14.704: ERROR/RSS Downloader(1162): org.xmlpull.v1.XmlPullParserException: END_TAG expected (position:START_TAG (empty) <img src='/ubbthreads/images/graemlins/smile.gif' alt=''>@29:212 in java.io.InputStreamReader@405405f8)
I have a loose html img tag in some incoming RSS that I am parsing. Meaning there is no end tag. I have zero control of the incoming feed, so I'm stuck. Is there anyway I can skip this tag. Everything works fine till I hit the tag.
Here's the exception.
06-07 15:46:14.704: ERROR/RSS Downloader(1162): org.xmlpull.v1.XmlPullParserException: END_TAG expected (position:START_TAG (empty) <img src='/ubbthreads/images/graemlins/smile.gif' alt=''>@29:212 in java.io.InputStreamReader@405405f8)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我只是捕获了异常并处理了它。
I simply caught the exception and handled it.