gnustep 目标 c 中的简单 http 请求不起作用

发布于 2024-12-18 15:21:20 字数 683 浏览 1 评论 0原文

#import <Foundation/Foundation.h>

main() {
        NSURL *url = [NSURL URLWithString:@"http://www.google.com/"]; 
        NSURLRequest *request = [[NSURLRequest alloc] initWithURL:url                
            cachePolicy:NSURLRequestReloadIgnoringCacheData  
                timeoutInterval:60]; 

        NSURLResponse *response; 
        NSError *error; 
        NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error]; 
        NSLog(@"Data were download below:\n%@", [[NSString alloc] initWithData:data encoding: NSASCIIStringEncoding]); 
}

运行可执行文件 -> 数据下载如下: [空]

为什么?

#import <Foundation/Foundation.h>

main() {
        NSURL *url = [NSURL URLWithString:@"http://www.google.com/"]; 
        NSURLRequest *request = [[NSURLRequest alloc] initWithURL:url                
            cachePolicy:NSURLRequestReloadIgnoringCacheData  
                timeoutInterval:60]; 

        NSURLResponse *response; 
        NSError *error; 
        NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error]; 
        NSLog(@"Data were download below:\n%@", [[NSString alloc] initWithData:data encoding: NSASCIIStringEncoding]); 
}

run the executable ->
Data were download below:
[null]

Why?

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

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

发布评论

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

评论(1

够运 2024-12-25 15:21:21

您是否尝试过分配请求和错误?

NSURLResponse *response = [[NSURLResponce alloc] init];

NSError *error = [[NSError alloc] init];

Have you tried allocating the request and error?

NSURLResponse *response = [[NSURLResponce alloc] init];

NSError *error = [[NSError alloc] init];

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