如何获取网站标题?
朋友..
现在,我正在尝试从网址获取网站标题.. 为此,我应该首先获取 http 内容......
我根据以下示例使用 stringWithContentsOfURL 来获取 http 内容。 从 UIWebView 读取 HTML 内容
当我尝试“http://www.apple.com" ,我得到了正确的结果。
但是,如果出现“http://www.google.co.hk",我总是得到nil..
上面的代码有什么问题?
要始终获取网站内容,我该怎么做?
请帮助我...
谢谢。
friends..
Now, I 'm trying to get website title from the url..
To do that , I should get http content first....
I used stringWithContentsOfURL to get http contents according to this following example..
Reading HTML content from a UIWebView
When I try "http://www.apple.com" , I got correct results..
But, in case of "http://www.google.co.hk", I always get nil..
What's the problem in above code?
To get website contents always, how can I do that?
please help me...
thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题是网址错误。尝试使用 http://www.google.com.hk 而不是 http://www.google.co.hk
The problem is that URL is wrong. Try http://www.google.com.hk instead of http://www.google.co.hk