如何解析网站?
嘿,我想构建一个可以解析网站以获取特定信息的应用程序。具体来说,可以解析 http://www.fedex.com /Tracking?language=english&cntry_code=us&tracknumbers=681780934297262 了解重要信息。有没有我可以使用的教程。
Hey I would like to build an app that could parse a website in order to get specific information. Specifically something that can parse http://www.fedex.com/Tracking?language=english&cntry_code=us&tracknumbers=681780934297262 for the important information. Is there a tutorial out there I could use.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这篇 Cocoa With Love 文章讨论了解析 XML以及带有 Xcode 提供的
libxml2
库的 HTML,使用 XPath 拉出感兴趣的节点。看一下PerformHTMLXPathQuery()
函数。This Cocoa With Love article discusses parsing XML and HTML with the
libxml2
library that is available with Xcode, using XPath to pull out the node(s) of interest. Take a look at thePerformHTMLXPathQuery()
function.试试这个工具:http://code.google.com/p/sitescraper/
Try this tool: http://code.google.com/p/sitescraper/