Android 2.1 中的 DOM 与 XPath
是否有任何适用于 Android 2.1 的优秀/稳定的第三方 XML DOM 解析器(支持 XPath)?
Are there any good/stable 3rd party XML DOM parsers (with XPath support) which work with Android 2.1?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为默认支持 Android 中的 XPath 开始API 级别为 8,即 2.2。
如果您没有特别需要使用 2.1,那应该没问题。如果必须使用 2.1,我建议使用 SAX 解析器 或 StAX(拉)解析器,两者自 API 级别 1 以来就已存在。
I think there is default support for XPath in Android starting in API level 8, which is 2.2.
If you have no particular need to work with 2.1, that should be just fine. If working with 2.1 is a necessity, I would recommend using a SAX parser or a StAX (pull) parser, both of which have been around since API level 1.
自 API v1 以来可用的包含的文档生成器有什么问题?不过,如果您只是想解析 XML 样式文档,那么我会推荐使用 简单 XML 框架。
What is wrong with the included Document Builder available since API v1? Though if you are just looking to parse XML style documents then I would recommend the Simple XML Framework instead.