- URL全称是Uniform Resource Locator(统一资源定位符),它就是资源的地址、位置,通过1个URL,能找到互联网上唯一的1个资源
,互联网上的每个资源都有一个唯一的URL。 - URL的基本格式:
协议://主机地址/路径
如: http://www.baidu.com/szzr/
主机地址:存放资源的主机的IP地址(域名)
路径:资源在主机中的位置 - 协议:不同的协议,代表着不同的资源查找方式,资源传输方式
- HTTP协议:Hyper Text Transfer Protocol(超文本传输协议),是用于从万维网(WWW)服务器传送超文本到本地浏览器的传输协议,HTTP是一个应用层协议,由请求和响应构成,是一个标准的客户端服务器模型。
HTTP协议采用请求/响应模型(即C/S模式)。客户端向服务器发送一个请求报文,服务器以一个状态作为响应。 -
C/S模式:Client(客户机)和Server(服务器)常常分别处在相距很远的两台计算机上,Client程序的任务是将用户的要求提交给Server程序,再将Server程序返回的结果以特定的形式显示给用户;Server程序的任务是接收客户程序提出的服务请求,进行相应的处理,再将结果返回给客户程序。
- HTTPS协议:Secure Hypertext Transfer Protocol(安全超文本传输协议)。它是一个安全通信通道,基于HTTP开发,用于在客户计算机和服务器之间交换信息,使用安全套接字层(SSL)进行信息交换,简单来说它是HTTP的安全版。HTTPS协议使用SSL在发送方把原始数据加密,然后在接收方进行解密,加密和解密需要发送方和接收方通过交换共知的密钥来实现,因此,所传送的数据不容易被网络黑客截获和解密。
- SSL是Netscape公司所提出的安全保密协议,在浏览器(如Internet Explorer、Netscape Navigator)和Web服务器(如Netscape的Netscape Enterpri
se Server、ColdFusion Server等等)之间构造安全通道来进行数据传输,SSL运行在TCP/IP之上、应用层之下,为应用程序提供加密数据通道。 -
HTTP和HTTPS的异同:
- https协议需要到ca申请证书,一般免费证书很少,需要交费
- http是超文本传输协议,信息是明文传输,https则是具有安全性的ssl加密传输协议
- http和https使用的是完全不同的链接方式,用的端口也不一样,前者是80,后者是443
- http的链接很简单,是无状态的
- https是由SSL+HTTP协议构建的可进行加密传输、身份认证的网络协议,要比http安全
- HTTP协议的常见请求方式有GET和POST。
- 两种请求方式(GET和POST)比较:
相同点:都能给服务器传输数据
不同点:
- 给服务器传输数据的方式不同:GET:通过网址字符串 POST:通过data
- 传输数据的大小:GET:网址字符串最多255字节 POST:使用NSData,容量超过1G
- 安全性:GET:所有传输给服务器的数据,显示在网址里,类似于密码的明文输入,直接可见 POST:数据被转成NSData(二进制数据),类似于密码的密文输入,无法直接读取
连接方式有同步连接和异步连接,同步连接程序任意出现卡死现象
异步连接有两种实现方式:代理方式和block回调方式
------------------ViewController.m--------------------
#import "ViewController.h"
@interface ViewController ()
// 保存网络请求的结果
@property (nonatomic, strong) NSMutableData *resultData;
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
}
- (IBAction)buttonClicked:(id)sender
{
// 在http网络请求时需要先修改info.plist文件
// [self requestData1];
// [self requestData2];
// [self requestData3];
// [self requestData4];
// [self requestData5];
[self requestData6];
}
#pragma mark ------------------------------ get同步 ---------------------------------
// 开发中不推荐使用同步网络请求, 体验非常差
- (void)requestData1
{
//地址字符串
NSString *urlString = @"http://ipad-bjwb.bjd.com.cn/DigitalPublication/publish/Handler/APINewsList.ashx?date=20131129&startRecord=1&len=5&udid=1234567890&terminalType=Iphone&cid=213";
//统一资源定位符(URL)
NSURL *url = [NSURL URLWithString:urlString];
// 第一个参数 : 统一资源定位符
// 第二个参数 : 缓存策略
// 第三个参数 : 超时时间(响应请求的有效时间)
NSURLRequest *request = [NSURLRequest requestWithURL:url cachePolicy:NSURLRequestReloadIgnoringLocalCacheData timeoutInterval:60.0f];
/*
NSURLRequestUseProtocolCachePolicy : 基础缓存策略
NSURLRequestReloadIgnoringLocalCacheData : 忽略本地缓存
NSURLRequestReloadIgnoringLocalAndRemoteCacheData : 忽略本地缓存, 无论本地是否有缓存, 都从网络下载
NSURLRequestReloadIgnoringCacheData = NSURLRequestReloadIgnoringLocalCacheData : 如果本地缓存有效, 则不下载, 无效则去下载
NSURLRequestReturnCacheDataElseLoad : 优先的使用本地缓存, 如果本地没有缓存, 则去下载
NSURLRequestReturnCacheDataDontLoad : 从不下载, 只使用本地缓存, 如果没有则请求失败. 多用于离线环境
NSURLRequestReloadRevalidatingCacheDataUnimplemented:验证本地数据和网络数据是否相同, 如果不同 则去下载, 如果相同 则使用
*/
// NSURLConnection 在iOS9.0之后不推荐使用
// 第一个参数 : NSURLRequest 类型的对象
// 第二个参数 : 存储的是一些网络请求的信息, 一般为nil(包体)
// 第三个参数 : 错误信息
NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
NSLog(@"data ==== %@", data);
// 解析数据
NSDictionary *dic = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingAllowFragments error:nil];
NSLog(@"dic ==== %@", dic);
}
#pragma mark ------------------------------ post同步 -------------------------------
- (void)requestData2
{
NSString *urlString = @"http://ipad-bjwb.bjd.com.cn/DigitalPublication/publish/Handler/APINewsList.ashx";
NSURL *url = [NSURL URLWithString:urlString];
NSMutableURLRequest *urlRequest = [NSMutableURLRequest requestWithURL:url];
// 创建一个字符串
NSString *dataString = @"date=20131129&startRecord=1&len=5&udid=1234567890&terminalType=Iphone&cid=213";
// 把这个字符串转成NSData类型的对象
NSData *postData = [dataString dataUsingEncoding:NSUTF8StringEncoding];
// 设置请求方式 方式为大写的 如 : POST GET
// GET请求可以不设置, 但是POST请求必须要设置
[urlRequest setHTTPMethod:@"POST"];
// 把需要上传的data放进request里面
[urlRequest setHTTPBody:postData];
NSData *resultData = [NSURLConnection sendSynchronousRequest:urlRequest returningResponse:nil error:nil];
NSLog(@"data ==== %@", resultData);
// 解析网络数据
NSDictionary *dic = [NSJSONSerialization JSONObjectWithData:resultData options:NSJSONReadingAllowFragments error:nil];
NSLog(@"dic ==== %@", dic);
}
#pragma mark -----------------------------get异步 代理模式-----------------------------
- (void)requestData3
{
NSString *urlString = @"http://ipad-bjwb.bjd.com.cn/DigitalPublication/publish/Handler/APINewsList.ashx?date=20131129&startRecord=1&len=5&udid=1234567890&terminalType=Iphone&cid=213";
NSURL *url = [NSURL URLWithString:urlString];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
// 代理的异步网络请求 (GET)
// 第一个参数 : NSURLRequest
// 第二个参数 : 代理人
// 这里遵循的是NSURLConnectionDataDelegate协议,实现了三个协议方法(服务器开始响应、接收到数据、结束响应)
[NSURLConnection connectionWithRequest:request delegate:self];
}
#pragma mark -----------------------------get异步 block模式------------------------------
- (void)requestData4
{
NSString *urlString = @"http://ipad-bjwb.bjd.com.cn/DigitalPublication/publish/Handler/APINewsList.ashx?date=20131129&startRecord=1&len=5&udid=1234567890&terminalType=Iphone&cid=213";
NSURL *url = [NSURL URLWithString:urlString];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
// 调用带有block回调的方法, 执行网络请求
// 第一个参数 : NSURLRequest
// 第二个参数 : block块里面的代码在哪个线程执行
[NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse * _Nullable response, NSData * _Nullable data, NSError * _Nullable connectionError)
{
// response 携带的是接口的一些信息
// data 请求下来的数据, 需要使用的
// connectionError 错误信息
if (connectionError == nil)
{
NSLog(@"data ==== %@", data);
NSDictionary *dic = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingAllowFragments error:nil];
NSLog(@"dic ==== %@", dic);
// 这里应该刷新UI了
// 1:给数据源数组赋值
// 2:赋值结束之后, 刷新UI ([self.tableView reloadData])
}
}];
}
#pragma mark ---------------------------post异步 代理模式-----------------------------
- (void)requestData5
{
NSString *urlString = @"http://ipad-bjwb.bjd.com.cn/DigitalPublication/publish/Handler/APINewsList.ashx";
NSURL *url = [NSURL URLWithString:urlString];
NSMutableURLRequest *urlRequest = [NSMutableURLRequest requestWithURL:url];
NSString *dataString = @"date=20131129&startRecord=1&len=5&udid=1234567890&terminalType=Iphone&cid=213";
NSData *postData = [dataString dataUsingEncoding:NSUTF8StringEncoding];
[urlRequest setHTTPMethod:@"POST"];
[urlRequest setHTTPBody:postData];
[NSURLConnection connectionWithRequest:urlRequest delegate:self];
}
#pragma mark ------------------------post异步 block模式-----------------------------
- (void)requestData6
{
NSString *urlString = @"http://ipad-bjwb.bjd.com.cn/DigitalPublication/publish/Handler/APINewsList.ashx";
NSURL *url = [NSURL URLWithString:urlString];
NSMutableURLRequest *urlRequest = [NSMutableURLRequest requestWithURL:url];
NSString *dataString = @"date=20131129&startRecord=1&len=5&udid=1234567890&terminalType=Iphone&cid=213";
NSData *postData = [dataString dataUsingEncoding:NSUTF8StringEncoding];
[urlRequest setHTTPMethod:@"POST"];
[urlRequest setHTTPBody:postData];
[NSURLConnection sendAsynchronousRequest:urlRequest queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse * _Nullable response, NSData * _Nullable data, NSError * _Nullable connectionError)
{
if (connectionError == nil)
{
NSLog(@"data ==== %@", data);
NSDictionary *dic = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingAllowFragments error:nil];
NSLog(@"dic ==== %@", dic);
}
}];
}
#pragma mark ---------------- NSURLConnectionDataDelegate协议方法 -------------------
// 服务器开始响应
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{
// 初始化保存结果的data
self.resultData = [NSMutableData data];
}
// 接收到数据
// 这个方法会重复的执行, 所以可能拿到一段一段的数据.这就需要我们把这些数据拼接起来
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{
// 为了防止拿到的数据不全, 所以把拿到的数据拼接到保存结果的data中
[self.resultData appendData:data];
}
// 结束响应
- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{
NSDictionary *dic = [NSJSONSerialization JSONObjectWithData:self.resultData options:NSJSONReadingAllowFragments error:nil];
NSLog(@"data ==== %@", self.resultData);
NSLog(@"dic ==== %@", dic);
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end