iPhone 网络服务 NSURL
您好,我正在开发一个应用程序,该应用程序从网站获取数据并将其显示在表格中。我已经成功地制作了一个 RSS feed(像 Twitter feed 一样制作,所以我认为它是一个 xmlparser),但现在我想从一个没有 RSS feed 的网站获取数据..我只想获取网页中的标题....任何建议我如何在没有 XMLParser 的情况下做到这一点...
谢谢
hi I am working on an application which takes data from a website and it displays it in table. I have been sucessful in making like an RSS feed (made like a twitter feed so I think it is an xmlparser) but now I want to get data from a website which doesn't have RSS feed in it..I just want to get the titles from the webpage.... any suggestion how do I do it without the XMLParser...
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为最好的方法是在服务器上创建一个 php/asp/... 页面,该页面将从远程网站抓取数据。
然后,在该页面中,您可以使用一些 CURL 来抓取数据。
请参阅此处。
接下来,您以所需的格式返回数据(XML/jSon/等...)。
最后,您可以轻松地从代码中调用该脚本。
另一方面,请注意不要抓取任何内容,因为略读通常是非法的,Apple 不会因此拒绝您的应用程序。
有一个不错帖子谈论它。
I think that the best way is to create on your server a php/asp/... page that will scrape data from the remote website.
Then, in that page, you can use some CURL to scrape data.
See here.
Next, you return the data in the format you want (XML/jSon/etc...).
Finally, you can easily call that script from your code.
On the other hand, pay attention to not scrape anything as skimming is generally illegal and Apple ca reject your app because of that.
There is a nice post talking about it.