网络第一天
其实今天学的东西我也不知道该怎么取标题了
一:POST
1.如果要传递大量数据,比如文件上传,只能用post请求
2.get的安全性比post要差一些,如果包含敏感信息,建议用post
3.post请求的分类
分为两类,区别在于请求对象的格式不同。
一类和get类似,使用url承载请求信息,多用于登陆注册,填表等操作(这种方式的POST请求也能用GET请求实现,但是GET请求,发送的数据是裸露的)
另一类使用NSData(二进制数据)承载请求信息,多用于上传文件
二:NSMutableURLRequest
NSMutableURLRequest是基于NSURLRequest的子类,常用方法有:
1.设置请求超时等待时间(超过这个时间就算超时,请求失败)
-(void)setTimeoutInterval:(NSTimeInterval)seconds;
2.设置请求方法
-(void)setHTTPMethod:(NSString *)method;
3.设置请求体:
-(void)setHTTPBody:(NSData *)data;
4.设置请求头
-(void)setValue:(NSString *)value forHTTPHeaderFiled:(NSString *)field;
三 webServer的使用
启动:sudo apachectl start
停止:sudo apachectl stop
重启:sudo apachectl restart
查看 Apache 版本 httpd -v
CGI-Executables:储存CGI程序
Documents:存储网页
Share:储存网络资源
四 上传图片的http post请求的格式:
Java代码
1. Content-type: multipart/form-data, boundary=AaB03x
2.
3. --AaB03x
4. content-disposition: form-data; name="field1"
5.
6. Hello Boris!
7. --AaB03x
8. content-disposition: form-data; name="pic"; filename="boris.png"
9. Content-Type: image/png
10.
11. ... contents of boris.png ...
12. --AaB03x--
第一行是指定了http post请求的编码方式为multipart/form-data(上传文件必须用这个)。
boundary=AaB03x说明了AaB03x为分界线。比如 --AaB03x 就是一个分界线的意思
content-disposition: form-data; name="field1"
Hello Boris!
这句话声明了请求中的一个字段的名称,如field1 以及字段的值,如Hello Boris!
这里类似form表单中的<input name="field1" type="text" value="Hello Boris!"/>
中间的空行是必须的。
不同的字段之间用分界线分开,分界线需要单独一行,如 --AaB03x--
分界线的下一行,是下一个字段
content-disposition: form-data; name="pic"; filename="boris.png"
Content-Type: image/png
... contents of boris.png ...
--AaB03x--
这里声明了变量pic,也就是我们要传的文件,上传文件的时候需要在后边指定file name:filename="boris.png"
并且需要在下一行指定文件的格式:Content-Type: image/png
... contents of boris.png ... 这里是boris.png的二进制内容,如 <89504e47 0d0a1a0a 0000000d 49484452 000000b4 000000b4 08020000 00b2af91 65000020 00494441 5478012c dd79b724 6b7616f6 8c888c88 8c9c8733 55ddb1d5 6a0db486 06218401 ......
在http post请求的结尾,需要有一个分界线,但是是前后都有--的:--AaB03x--
以上的这些格式,是http的规范,每个空行,空格都是必须的。
代码将在下篇博客中展示