在android中使用SAX提取带有分号的xml标签
我想使用 Sax Parser 从 xml 文件中提取属性
我能够提取除其中包含分号的标签之外的所有标签
例如
<geo:lat>-9.9</geo:lat>
是否有任何方法可以从这些标签中提取日期? '
I want to extract attributes from an xml file using Sax Parser
I am able to extract all the tags except those which has a semicolon in it
For example
<geo:lat>-9.9</geo:lat>
Whether there is any way to extract date from these tag?
'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
geo是预定义参数,您可以直接在SAX解析器处理程序文件的startElement和EndElement方法中mach标签。
我也面临这样的问题。
geo is predefine parameter,you can directly mach tag in startelement and EndElement method of your SAX parser handler file.
i also face this kind of problem.