stringWithContentOfURL 返回一个空字符串

发布于 2024-09-27 02:29:02 字数 112 浏览 4 评论 0原文

我的方法“[NSStrng stringWithContentOfURL:url]”有问题; 一切都工作得很好,直到我将网址从网址更改为 IP 地址,然后我得到了一个空字符串。 您有解决方案或想法吗? Thks

i have a problem with the method "[NSStrng stringWithContentOfURL:url]";
all things worked so fine until i change my url from a web address to an ip address with which i got an empty string.
Did you have a solution or an idea?
Thks

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

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

发布评论

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

评论(1

紫﹏色ふ单纯 2024-10-04 02:29:02

使用返回错误状态的方法(例如+stringWithContentsOfURL:encoding:error:)并检查错误返回


更新:NSCocoaErrorDomain Code=256 是“NSFileReadUnknownError”,这意味着“文件读取错误,原因未知”(不是很有帮助)。 URL 可能有问题(路径名拼写错误、IP 地址错误等)。URL

中肯定支持数字 IP 地址,所以这不是问题。

另请参阅 iPhone - dataWithContentsOfURL:不适用于某些网址

Use a method that returns an error status (e.g. +stringWithContentsOfURL:encoding:error:) and check the error return.


update: NSCocoaErrorDomain Code=256 is "NSFileReadUnknownError", which means "file read error, reason unknown" (not very helpful). Probably there's something wrong with the URL (misspelled pathname, wrong IP address, etc.)

Numeric IP addresses most definitely are supported in URLs, so that's not the problem.

see also iPhone - dataWithContentsOfURL: does not work for some URLs

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