没有 Soap 消息的 XML 解析
如何在没有任何肥皂消息的情况下从实时 URL 解析 XML。
< stores >
< store value="abc" >XYZ< /store >
< store value="pqr" >SAM< /store >
< store value="ZZZ" >ALG< /store >
< /stores >
以及如何从 XML 中获取值,即“abc”、“pqr”、“ZZZ”。
提前致谢。
How to Parse XML from live URL without any soap message.
< stores >
< store value="abc" >XYZ< /store >
< store value="pqr" >SAM< /store >
< store value="ZZZ" >ALG< /store >
< /stores >
And how to get the value i.e. "abc", "pqr", "ZZZ" from the XML.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道你在说什么,但这个答案可能对你有帮助: XML 解析在 Cocoa Touch/iPhone 中。
另外,要实际从服务器获取 XML,查看文档
甚至还有一个 有关 iOS 上 XML 解析的视频教程
I have no idea what you're talking about, but this answer might help you: XML Parsing in Cocoa Touch/iPhone.
Also, to actually get the XML from the server, check out the docs
There's even a video tutorial about XML parsing on iOS