IOS学习之路十八(通过 NSURLConnection 发送 HTTP 各种请求)
你想通过 Http 协议向服务器发送一个 Get 的包装请求,并在这个请求中添加了一些请
求参数.
向远程服务器发送一个 GET 请求,然后解析返回的数据。通常一个 GET 请求是添加了
一些参数的,这些参数一般是添加在 URL 请求中。
我准备了一个 GET 形式的 webservice 接口,你可以通过 http://pixolity.com/get.php 来进
行请求。
- /* URL = http://pixolity.com/get.php?param1=First¶m2=Second */ NSString *urlAsString = @"http://pixolity.com/get.php";
- urlAsString = [urlAsString stringByAppendingString:@"?param1=First"]; urlAsString = [urlAsString stringByAppendingString:@"¶m2=Second"];
- NSURL *url = [NSURL URLWithString:urlAsString];
- NSMutableURLRequest *urlRequest = [NSMutableURLRequest requestWithURL:url]; [urlRequest setTimeoutInterval:30.0f];
- [urlRequest setHTTPMethod:@"GET"];
- NSOperationQueue *queue = [[NSOperationQueue alloc] init];
- [NSURLConnection sendAsynchronousRequest:urlRequest queue:queue completionHandler:^(NSURLResponse *response,
- 
- NSData *data, NSError *error) {
- if ([data length] >0 && error == nil){
- NSString *html = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
- NSLog(@"HTML = %@", html); }
- else if ([data length] == 0 && error == nil){
- NSLog(@"Nothing was downloaded."); }
- else if (error != nil){
- NSLog(@"Error happened = %@", error);
- } }];
post请求:
- NSString *urlAsString = @"http://pixolity.com/post.php";
- urlAsString = [urlAsString stringByAppendingString:@"?param1=First"];
- urlAsString = [urlAsString stringByAppendingString:@"¶m2=Second"];
- NSURL *url = [NSURL URLWithString:urlAsString];
- NSMutableURLRequest *urlRequest = [NSMutableURLRequest requestWithURL:url]; [urlRequest setTimeoutInterval:30.0f];
- [urlRequest setHTTPMethod:@"POST"];
- NSString *body = @"bodyParam1=BodyValue1&bodyParam2=BodyValue2"; [urlRequest setHTTPBody:[body dataUsingEncoding:NSUTF8StringEncoding]]; NSOperationQueue *queue = [[NSOperationQueue alloc] init];
- [NSURLConnection sendAsynchronousRequest:urlRequest queue:queue completionHandler:^(NSURLResponse *response,
- NSData *data, NSError *error) {
- if ([data length] >0 && error == nil){
- NSString *html = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
- NSLog(@"HTML = %@", html); }
- else if ([data length] == 0 && error == nil){
- NSLog(@"Nothing was downloaded."); }
- else if (error != nil){
- NSLog(@"Error happened = %@", error);
- } }];
delete请求:
- NSString *urlAsString = @"http://pixolity.com/delete.php";
- urlAsString = [urlAsString stringByAppendingString:@"?param1=First"];
- urlAsString = [urlAsString stringByAppendingString:@"¶m2=Second"];
- NSURL *url = [NSURL URLWithString:urlAsString];
- NSMutableURLRequest *urlRequest = [NSMutableURLRequest requestWithURL:url];
- [urlRequest setTimeoutInterval:30.0f];
- [urlRequest setHTTPMethod:@"DELETE"];
- NSString *body = @"bodyParam1=BodyValue1&bodyParam2=BodyValue2";
- [urlRequest setHTTPBody:[body dataUsingEncoding:NSUTF8StringEncoding]];
- NSOperationQueue *queue = [[NSOperationQueue alloc] init];
- [NSURLConnection sendAsynchronousRequest:urlRequest queue:queue completionHandler:
- ^(NSURLResponse *response, NSData *data, NSError *error) {
- if ([data length] >0 && error == nil){
- NSString *html = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
- NSLog(@"HTML = %@", html); }
- else if ([data length] == 0 && error == nil){
- NSLog(@"Nothing was downloaded."); }
- else if (error != nil){
- NSLog(@"Error happened = %@", error);
- } }];
put请求:
- NSString *urlAsString=@"http://pixolity.com/put.php";
- urlAsString=[urlAsString stringByAppendingString:@"?param1=First"];
- urlAsString=[urlAsString stringByAppendingString:@"¶m2=Second"];
- NSURL *url=[NSURL URLWithString:urlAsString];
- NSMutableURLRequest *urlRequest=[NSMutableURLRequest requestWithURL:url];
- [urlRequest setTimeoutInterval:30.0f];
- [urlRequest setHTTPMethod:@"PUT"];
- NSString *body=@"bodyParaml=BodyValuel&bodyParam2=BodyValue2";
- [urlRequest setHTTPBody:[body dataUsingEncoding:NSUTF8StringEncoding]];
- NSOperationQueue *queue=[[NSOperationQueue alloc] init];
- [NSURLConnection sendAsynchronousRequest:urlRequest queue:queue completionHandler:^(NSURLResponse *response, NSData *data, NSError *error) {
- if ([data length]>0&&error==nil) {
- NSString *html=[[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
- NSLog(@"HTML=%@",html);
- }else if([data length]==0&&error==nil){
- NSLog(@"Nothing was downLoaded.");
- }else if(error!=nil){
- NSLog(@"Error Happened=%@",error);
- }
- }];
转载请注明:
本文转自:点击打开链接http://blog.csdn.net/wildcatlele
新浪微博:http://weibo.com/u/3202802157
IOS学习之路十八(通过 NSURLConnection 发送 HTTP 各种请求)的更多相关文章
- IOS学习之路十四(用TableView做的新闻客户端展示页面)
最近做的也个项目,要做一个IOS的新闻展示view(有图有文字,不用UIwebview,因为数据是用webservice解析的到的json数据),自己一直没有头绪,可后来听一个学长说可以用listvi ...
- 嵌入式Linux驱动学习之路(十八)LCD驱动
驱动代码: /************************************************************************* > File Name: lcd ...
- IOS学习之路十二(UITableView下拉刷新页面)
今天做了一个下拉刷新的demo,主要用到了实现的开源框架是:https://github.com/enormego/EGOTableViewPullRefresh 运行结果如下: 实现很简单下载源代码 ...
- IOS学习之路十五(UIView 添加背景图片以及加边框)
怎样给UIview添加背景图片呢很简单,就是先给view添加一个subview,然后设为背景图片: 效果图如下: 很简单直接上代码: //设置内容 self.myTopView.backgroundC ...
- IOS学习之路十(仿人人滑动菜单Slide-out Sidebar Menu)
最近滑动菜单比较流行,像facebook和人人等都在使用滑动菜单,今天做了一个小demo大体效果如下: 这次用了一个开源的项目ECSlidingViewController这个也是一个挺著名的托管在G ...
- IOS学习之路十九(JSON与Arrays 或者 Dictionaries相互转换)
今天写了个json与Arrays 或者 Dictionaries相互转换的例子很简单: 通过 NSJSONSerialization 这个类的 dataWithJSONObject: options: ...
- IOS学习之路十六(UItableView 通过Prepare for segue 页面传值)
当你点击一个UITableView 的section 或者cell的时候希望把值传到另一个页面(页面是通过segue跳转的),可以通过prepareforsegure 方法传值 (我的UITableV ...
- IOS开发---菜鸟学习之路--(二十二)-近期感想以及我的IOS学习之路
在不知不觉当中已经写了21篇内容 其实一开始是没有想些什么东西的 只是买了Air后 感觉用着挺舒服的,每天可以躺在床上,就一台笔记本,不用网线,不用电源,不用鼠标,不用键盘,干干脆脆的就一台笔记本. ...
- Java框架spring 学习笔记(十八):事务管理(xml配置文件管理)
在Java框架spring 学习笔记(十八):事务操作中,有一个问题: package cn.service; import cn.dao.OrderDao; public class OrderSe ...
随机推荐
- MacOS10.9平台配置Appium+Java环境
1) 安装JDK 下载地址:http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html ...
- .net 控件开发第二天 怎么将 第一天写的代码 用到 .net中来
前面第一天 我们看到的全是 js的代码,虽然不管是BS的框架是java 还是 php,复用性 还是特别高的, 但是 写起来比较费劲,怎么办,我们能不能 更 简单点呢? 当然可以,这个时候我们就要用到 ...
- JDBC连接池的简单实现
首先解释一下,我在做自己android发育.java web这是我的弱点,就在最近,京东云免费,因此,要折腾几.有一点经验,特别是作为共享. 假设内容的文章是错,还请高手指正. 我在这里web结束,需 ...
- 10. IDENTITY属性使用小结
原文:10. IDENTITY属性使用小结 从SQL Server 2012开始有了Sequence,简单用列如下: CREATE SEQUENCE TestSeq START INCREMENT ; ...
- 当今最流行的Node.js应用开发框架简介
快速开发而又容易扩展,高性能且鲁棒性强.Node.js的出现让所有网络应用开发者的这些梦想成为现实.但是,有如其他新的开发语言技术一样,从头开始使用Node.js的最基本功能来编写代码构建应用是一个非 ...
- POJ 2777 Count Color(线段树+位运算)
题目链接:http://poj.org/problem?id=2777 Description Chosen Problem Solving and Program design as an opti ...
- ShellExecute函数简单说明
平时在delphi写代码的过程中总是能遇到ShellExecute函数,于是索性将它的使用方法整理一下,由于我在微软的站点上也没能查到个详解(当然我查的中文版,俺菜嘛) ShellExecute函数原 ...
- Android超炫日期日历控件:TimesSquare
先看效果图: 使用说明: 在布局文件里: <com.squareup.timessquare.CalendarPickerView android:id="@+id/calendar_ ...
- Appium根据xpath获取控件实例随笔
如文章<Appium基于安卓的各种FindElement的控件定位方法实践>所述,Appium拥有众多获取控件的方法.其中一种就是根据控件所在页面的XPATH来定位控件. 本文就是尝试通过 ...
- JAVA 代码生成。SimpleCaptcha
去官方网站下载Jar包: http://simplecaptcha.sourceforge.net/ Javadocs: http://simplecaptcha.sourceforge.net/ja ...