- 浏览: 903971 次
- 性别:
- 来自: 上海
文章分类
- 全部博客 (466)
- iPhone, iOS , Objective-c (155)
- 数据库 (20)
- 设计模式 (5)
- 第三方包管理,cocoapod (2)
- 版本管理, SVN, Subversion, Git (1)
- Google, Android, Java (14)
- Wordpress (1)
- 职业素养 (3)
- 版本管理,git (3)
- 前端小技巧 (2)
- flash (1)
- javascript (5)
- Ruby (0)
- 编程语言 (1)
- 网络常识 (1)
- 找到生活好感觉 (5)
- 产品经理 (1)
- markdown (1)
- 云服务器 (1)
- iPhone (116)
- iOS (116)
- Objective-c (116)
- 学习技巧 (2)
- Google (5)
- Android (6)
- Java (21)
- python (1)
- sqlite (3)
- node.js (2)
- mongodb (2)
- 学习技巧,阅读 (2)
- 软件测试 (3)
- 架构设计 (2)
- 设计 (1)
- Spring framework (3)
- junit (1)
- Linux (2)
- 软件 (1)
- Struts2 (1)
- 版本管理 (3)
- SVN (3)
- Subversion (3)
- Git (3)
- mysql (5)
- quartz (1)
- 无关技术 (1)
- 前端 (1)
- Redis (1)
- 产品管理 (0)
- 计算机常识 (1)
- 计算机科学 (0)
- swift (1)
- 服务器 (2)
- 搜索 (1)
- Scala (1)
- J2EE (1)
- maven (1)
- 前端css (1)
- 英语 (1)
- 消息队列 (1)
- kafka (0)
- apache kafka (4)
- netbeans (1)
- IDE (2)
- 歌词 (1)
- 过滤器实现 (1)
- linux vim vi (1)
- jmeter (1)
- springcloud (1)
最新评论
-
hujingnemo:
不知道为什么打不开
CHM如何改编字体大小 -
weiboyuan:
求答案 weiboyuanios@163.com
iOS软件工程师面试题(高级) -
xueji5368:
这个现在已经广泛使用了嘛!
RoboGuice入门 -
Yao__Shun__Yu:
...
CHM如何改编字体大小 -
353144886:
非常之详细 美女求认识
sqlite数据类型 datetime处理
1、 准备阶段
NSString *urlString = [NSString stringWithFormat:@"http://jssb.zust.edu.cn/androidLogin.action"];
NSMutableURLRequest *request = [[[NSMutableURLRequest alloc] init] autorelease];
[request setURL:[NSURL URLWithString:urlString]];
[request setHTTPMethod:@"POST"];
2、设置头
NSString *contentType = [NSString stringWithFormat:@"text/xml"];
[request addValue:contentType forHTTPHeaderField: @"Content-Type"];
3、数据内容体的设定
NSMutableData *postBody = [NSMutableData data];
[postBody appendData:[[NSString stringWithFormat:@"id=%@&password=%@&role=%@",@"admin02",@"admin02",@"dean"] dataUsingEncoding:NSUTF8StringEncoding]];
[request setHTTPBody:postBody];
XML传送的时候:
NSMutableData *postBody = [NSMutableData data];
[postBody appendData:[[NSString stringWithFormat:@"<Request Action=\"Login\">"] dataUsingEncoding:NSUTF8StringEncoding]];
[postBody appendData:[[NSString stringWithFormat:@"<Body>"] dataUsingEncoding:NSUTF8StringEncoding]];
[postBody appendData:[[NSString stringWithFormat:@"<Username>wangjun</Username>"] dataUsingEncoding:NSUTF8StringEncoding]];
[postBody appendData:[[NSString stringWithFormat:@"<Password>password</Password>"] dataUsingEncoding:NSUTF8StringEncoding]];
[postBody appendData:[[NSString stringWithFormat:@"<PlatformID>2</PlatformID>"] dataUsingEncoding:NSUTF8StringEncoding]];
[postBody appendData:[[NSString stringWithFormat:@"<PlatformVersion>3.1.3</PlatformVersion>"] dataUsingEncoding:NSUTF8StringEncoding]];
[postBody appendData:[[NSString stringWithFormat:@"<TaskViewerName>IP 1.3</TaskViewerName>"] dataUsingEncoding:NSUTF8StringEncoding]];
[postBody appendData:[[NSString stringWithFormat:@"<TaskViewerVersion>3</TaskViewerVersion>"] dataUsingEncoding:NSUTF8StringEncoding]];
[postBody appendData:[[NSString stringWithFormat:@"</Body>"] dataUsingEncoding:NSUTF8StringEncoding]];
[postBody appendData:[[NSString stringWithFormat:@"</Request>"] dataUsingEncoding:NSUTF8StringEncoding]];
//post
[request setHTTPBody:postBody];
4、请求响应
NSHTTPURLResponse* urlResponse = nil;
NSError *error = [[NSError alloc] init];
NSData *responseData = [NSURLConnection sendSynchronousRequest:request returningResponse:&urlResponse error:&error];
NSString *result = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding];
NSString *urlString = [NSString stringWithFormat:@"http://jssb.zust.edu.cn/androidLogin.action"];
NSMutableURLRequest *request = [[[NSMutableURLRequest alloc] init] autorelease];
[request setURL:[NSURL URLWithString:urlString]];
[request setHTTPMethod:@"POST"];
2、设置头
NSString *contentType = [NSString stringWithFormat:@"text/xml"];
[request addValue:contentType forHTTPHeaderField: @"Content-Type"];
3、数据内容体的设定
NSMutableData *postBody = [NSMutableData data];
[postBody appendData:[[NSString stringWithFormat:@"id=%@&password=%@&role=%@",@"admin02",@"admin02",@"dean"] dataUsingEncoding:NSUTF8StringEncoding]];
[request setHTTPBody:postBody];
XML传送的时候:
NSMutableData *postBody = [NSMutableData data];
[postBody appendData:[[NSString stringWithFormat:@"<Request Action=\"Login\">"] dataUsingEncoding:NSUTF8StringEncoding]];
[postBody appendData:[[NSString stringWithFormat:@"<Body>"] dataUsingEncoding:NSUTF8StringEncoding]];
[postBody appendData:[[NSString stringWithFormat:@"<Username>wangjun</Username>"] dataUsingEncoding:NSUTF8StringEncoding]];
[postBody appendData:[[NSString stringWithFormat:@"<Password>password</Password>"] dataUsingEncoding:NSUTF8StringEncoding]];
[postBody appendData:[[NSString stringWithFormat:@"<PlatformID>2</PlatformID>"] dataUsingEncoding:NSUTF8StringEncoding]];
[postBody appendData:[[NSString stringWithFormat:@"<PlatformVersion>3.1.3</PlatformVersion>"] dataUsingEncoding:NSUTF8StringEncoding]];
[postBody appendData:[[NSString stringWithFormat:@"<TaskViewerName>IP 1.3</TaskViewerName>"] dataUsingEncoding:NSUTF8StringEncoding]];
[postBody appendData:[[NSString stringWithFormat:@"<TaskViewerVersion>3</TaskViewerVersion>"] dataUsingEncoding:NSUTF8StringEncoding]];
[postBody appendData:[[NSString stringWithFormat:@"</Body>"] dataUsingEncoding:NSUTF8StringEncoding]];
[postBody appendData:[[NSString stringWithFormat:@"</Request>"] dataUsingEncoding:NSUTF8StringEncoding]];
//post
[request setHTTPBody:postBody];
4、请求响应
NSHTTPURLResponse* urlResponse = nil;
NSError *error = [[NSError alloc] init];
NSData *responseData = [NSURLConnection sendSynchronousRequest:request returningResponse:&urlResponse error:&error];
NSString *result = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding];
发表评论
-
UIImage变为NSData并进行压缩
2014-05-19 20:23 1928//sdk中提供了方法可以直接调用 UIImage *im ... -
update cocapods
2014-05-17 22:27 800早上更新cocoapod依赖库,发现更新到32.1版本,早先的 ... -
iOS发送短信息代码实例
2014-05-16 18:15 2686#import <MessageUI/Message ... -
DISPATCH TIMER
2014-05-14 16:12 729/* __block void (^callback) ... -
UITextField左边显示图片
2014-05-13 18:08 1170The overlay view displayed on t ... -
iOS调用系统打电话,发短信功能
2014-05-11 15:48 2084先介绍一种最简单的方法: 调用打电话功能 [[UIAppl ... -
iOS面试题
2014-05-09 16:10 10771.写一下UIButton与UITableView的层级结构 ... -
socket二进制报文
2014-05-09 15:18 1300里面有帧头 字符串UTF-8 中间用0隔开 又一个字符串 ... -
将网站添加到桌面的方法
2014-05-08 14:25 1661<link href="http://www. ... -
iPhone通讯录联系人操作大全
2014-05-07 10:29 14591.需要引入AddressBook.framework框架 2 ... -
sqlite获取最新插入的rowid
2014-05-07 09:59 1521除了 last_insert_rowid select max ... -
号码归属地查询,拨打电话
2014-05-06 15:07 845在程序内调用拨打电话的方法,[[UIApplication s ... -
iOS时间合并
2014-04-28 17:55 1093合并同一时间的课程,同一时间可能有多个课程,比如13:30-1 ... -
vCard通讯录格式说明
2014-04-28 16:47 2556原帖:http://freesoftman.iteye.com ... -
UISearchBar背景色全套解决方案
2014-04-25 09:36 7442os系统升级到7.1后,原来在7.0下显示正常的UISearc ... -
升级XCode5.1.1遇到的奇葩问题NSString,NSObjectRuntime.h报错,Foundation找不到
2014-04-24 11:19 896升级XCode5.1.1遇到的奇葩问题NSString,NSO ... -
将NSString转为NSArray
2014-04-22 16:52 6269// Your JSON data: NSString *c ... -
另外一种NSData转为NSString的方法
2014-04-22 15:40 1211If the data is not null-termina ... -
HTTP,Socket,WebSocket异同
2014-04-18 16:54 1832参考文章: http://abbshr.g ... -
push隐藏UINavigtaionBar和UITabbar
2014-04-17 15:20 1091[self.navigationController setN ...
相关推荐
在示例代码中,同步POST请求的创建过程包括: - 创建URL对象。 - 使用URL创建`NSMutableURLRequest`,设置缓存策略和超时时间,然后设置HTTP方法为"POST"。 - 将参数转化为`NSData`,并将其设置为请求体。 - ...
OC中的POST请求同样可以使用`NSURLSession`或`NSURLConnection`实现。 ```objc NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration]; NSURLSession *session ...
POST请求适合传递大量或敏感数据,没有URL长度限制,但处理起来比GET复杂,需要将参数与URL分开。 示例: ```objc NSURL *url = [NSURL URLWithString:@"http://api.hudong.com/iphonexml.do"]; ...
五、POST请求的封装 类似地,可以创建`- (void)POST:(NSString *)URLString parameters:(NSDictionary *)parameters completion:(void(^)(id response, NSError *error))completion`方法,使用`AFHTTPSessionManager...
接着,使用`NSURLSession`的`dataTaskWithRequest:completionHandler:`方法发起POST请求,传入`NSURLRequest`对象和一个完成处理块来处理响应数据。 2. **HTTP POST请求**: - POST请求用于向服务器发送数据,通常...
标题中的"AFStudyPost"显然指的是使用AFNetworking进行POST请求的一个学习或示例项目。AFNetworking是iOS和macOS平台上广泛使用的网络库,它简化了HTTP请求处理,包括GET和POST等方法。在这个项目中,重点是理解如何...
- 在POST请求中,如果需要上传文件,通常会使用Multipart Form Data。这涉及到创建复杂的HTTPBody和Header,可以使用第三方库如AFNetworking简化操作。 8. **异步与同步请求**: - URLConnection默认是异步的,即...
AFNetworking 提供了两种主要的网络请求方式:同步和异步。异步请求是默认的,这使得应用程序在等待服务器响应的同时可以继续执行其他任务,提高了用户体验。同步请求则会阻塞当前线程,直到请求完成,通常只在特定...
本示例“simpleurlconnections”是针对iOS平台的官方网络连接代码实践,旨在帮助开发者理解并掌握如何在Objective-C中使用NSURLConnection进行网络请求。在2018年12月7日发布的这个源码库,包含了完整的实现过程和...
对于POST请求,我们还需要设置请求体,即要发送的数据。 2. 设置代理:NSURLConnection使用代理模式,你需要实现NSURLConnectionDelegate和NSURLConnectionDataDelegate协议的方法。这些方法会在请求的不同阶段被...
**NSMutableURLRequest**: 作为NSURLRequest的子类,允许开发者修改请求的属性,比如添加自定义头信息或设置请求体内容,这在发送POST请求时尤其有用。 **NSURLConnection**: 用于发送NSURLRequest,并与服务器建立...
- `<AFURLRequestSerialization>`:定义了请求序列化协议,用于转换请求参数为 `NSURLRequest`。 - **AFHTTPRequestSerializer**:默认的请求序列化器,将字典或二进制数据转换为 HTTP 请求。 - **...
`NSURLSessionDataTask`用于发送GET和POST请求,而`NSURLSessionDownloadTask`则用于大文件的下载。 2. **请求与响应**: 在`NSURLSession`中,我们通过`NSURLSessionTask`发起请求。请求可以是`NSURLRequest`对象,...
6. **请求配置**: NSURLRequest对象可以配置请求头、超时时间、缓存策略等,以适应不同的网络环境和安全需求。 7. **安全性与身份验证**: URLSession支持HTTPS和TLS,确保数据传输的安全。对于需要证书或凭据的...
5. **官方提供的SimpleNetworkStreams**:Apple提供了简化网络流操作的示例代码,方便开发者理解和实现网络请求。 iOS网络编程的整体理论包含以下几个关键部分: **基于URL的加载系统**:这是iOS网络编程的基础,...
3. **发起请求**:使用NSURLSessionDataTask发起GET或POST请求,或者使用NSURLSessionDownloadTask处理下载任务。 ```objc NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@...
3. **发送请求**: 任务需要一个URL请求(NSURLRequest或 URLRequest)来指定要访问的URL和HTTP方法(GET、POST等)。请求还可以包含头信息和POST参数。 4. **处理响应和数据**: 通过实现URLSessionDelegate协议,...
POST请求常用于向服务器提交数据。创建POST请求需要设置请求体: ```objc NSDictionary *parameters = @{@"key": @"value"}; NSURL *url = [NSURL URLWithString:@"http://example.com/api"]; NSMutableURLRequest ...
1. `NSURLRequest` 类型的请求:你需要构建一个包含URL信息的请求对象,例如通过 `NSURLRequest requestWithURL:` 创建。请求可以包含HTTP头信息、请求方法(GET、POST等)和其他必要设置。 2. `NSOperationQueue`...
1. **创建请求对象**:首先,你需要创建一个`NSURLRequest`对象,该对象包含了HTTP请求的所有信息,比如URL、HTTP方法(GET、POST等)、请求头和请求体(如果需要的话)。 2. **定义回调块**:然后,你需要提供一个...