如何使用 XMLParser 解析 google 天气 xml

发布于 2024-10-16 17:44:50 字数 222 浏览 2 评论 0原文

我想使用 NSXML 解析 google 天气 API,所以请指导我。网址如下所示:http://www.google.com/ig/api?weather=islamabad 。我可以解析“标记”xml 中的数据,但此 URL 中使用的 xml 结构对我来说无法理解。请帮忙。

i want to parse google weather API using NSXML so please guide me for this. URL looks like: http://www.google.com/ig/api?weather=islamabad. I can parse data from "tagged" xml, but the xml structure used in this URL is not understandable to me. Please help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

听你说爱我 2024-10-23 17:44:50

您应该检查 NSXMLParserDeleagte 的文档:

- (void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qualifiedName attributes:(NSDictionary *)attributeDict

attributeDict - 正是您所需要的。例如,对于标签:

<weather module_id="0" tab_id="0" mobile_row="0" mobile_zipped="1" row="0" section="0">

attributeDict 将包含 6 个键:module_id、tab_id、mobile_row、mobile_zipped、row、section 以及适当的值。

You should check docs for NSXMLParserDeleagte:

- (void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qualifiedName attributes:(NSDictionary *)attributeDict

attributeDict - is exactly what you need. For example for tag:

<weather module_id="0" tab_id="0" mobile_row="0" mobile_zipped="1" row="0" section="0">

attributeDict would contain 6 keys: module_id, tab_id, mobile_row, mobile_zipped, row, section with appropriate values.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文