本文主要是介绍网络发送同步请求——(开发中一般不会使用,但是还是了解的好),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
新建工程代码如下:
//
// ViewController.m
// 异步连接参数解析
//
// Created by apple on 15/10/26.
// Copyright (c) 2015年 LiuXun. All rights reserved.
//#import "ViewController.h"@interface ViewController ()@end@implementation ViewController- (void)viewDidLoad {[super viewDidLoad];// 1 urlNSURL *url = [NSURL URLWithString:@"http://127.0.0.1/demo.json"];// 2. 建立请求NSURLRequest *request = [NSURLRequest requestWithURL:url];// 3. 建立连接Connection,发送同步请求到服务器/**参数:SynchronousRequest:发送同步请求returningResponse:服务器响应的地址error:错误信息的地址*/NSURLResponse *response = nil;NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:nil];NSLog(@"reponse= %@", response);NSLog(@"%@——%@", [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding], [NSThread currentThread]);
}
@end
运行结果如下:
这篇关于网络发送同步请求——(开发中一般不会使用,但是还是了解的好)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!