发送Http请求(POST GET)的方法
1.Get方法
1.1 使用NSMutableURLRequest
view plaincopy to clipboardprint?
NSURL* url = [NSURL URLWithString:@"http://aminby.net"];
NSMutableURLRequest* request = [NSMutableURLRequest new];
[request setURL:url];
[request setHTTPMethod:@"GET"];
NSHTTPURLRequest* response;
NSData* data = [NSURLConnection sendSynchronousRequest:request
returningResponse:&response error:nil];
[NSString* strRet = [[NSString alloc] initWithData:data encoding:NSUTF8String];
NSLog(strRet);
[strRet release];
1.2 使用NSString
view plaincopy to clipboardprint?
[NSString stringWithContentsOfURL:(NSURL *)url
encoding:(NSStringEncoding)enc error:(NSError **)error];
// 或者
[NSString stringWithContentsOfURL:(NSURL *)url];
1.3 使用NSData
view plaincopy to clipboardprint?
// options有两个枚举,NSMappedRead这个不懂, NSUncachedRead是不缓存
[NSData dataWithContentsOfURL:(NSURL *)url
options:(NSUInteger)readOptionsMask
error:(NSError **)errorPtr]
// 或者
[NSData dataWithContentsOfURL:(NSURL *)url];
1.2和1.3的方法是缺点是没办法知道response的status,一般是返回200-299之间的数值代表请求成功.我们可以依照这个code来做数据处理, 如果对地址存在很有把握,就可以使用后两种简单的GET方法.
今天查了一下手册,发现NSArray NSDictionary 也有xxxxWithContentsOfURL的方法, 这两个我还没用过, 应该是跟NSData和NSString一样,但具体怎么用我还不清楚.
2.Post方法
2.1 使用NSMutableURLRequest
view plaincopy to clipboardprint?
NSURL* url = [NSURL URLWithString:@"http://aminby.net"];
NSMutableURLRequest* request = [NSMutableURLRequest new];
[request setURL:url];
[request setHTTPMethod:@"GET"];
[request addValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
[request setHTTPBody:@"some param"];
NSHTTPURLRequest* response;
NSData* data = [NSURLConnection sendSynchronousRequest:request
returningResponse:&response error:nil];
[NSString* strRet = [[NSString alloc] initWithData:data encoding:NSUTF8String];
NSLog(strRet);
[strRet release];
分享到:
补充:综合编程 , 其他综合 ,