• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Objective-C-使用NSMutableURLRequest发送POST请求,使用NSJSONSerialization解析JSON ...

原作者: [db:作者] 来自: [db:来源] 收藏 邀请
NSString *reqData = @"Data=";
    NSData *postDatas = nil;
    NSString *urlPath = @"url";
    
    //组json字符串数据
    NSMutableDictionary *mulDic = [[[NSMutableDictionary alloc] init] autorelease];
    [mulDic setValue:@"P003" forKey:@"type"];
    
    //NSJSONSerialization 组json字符串
    if ([NSJSONSerialization isValidJSONObject:mulDic]) {
        
        postDatas = [NSJSONSerialization dataWithJSONObject:mulDic options:NSJSONWritingPrettyPrinted error:nil];
        NSString *str = [[NSString alloc] initWithData:postDatas encoding:NSUTF8StringEncoding];
        reqData = [reqData stringByAppendingString:str];
        NSLog(@"reqData:%@",reqData);
        
        //NSData *postData = [reqData dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:YES];
        postDatas = [NSData dataWithBytes:[reqData UTF8String] length:[reqData length]];
        
    }
    
    NSString *len = [NSString stringWithFormat:@"%d",(int)[postDatas length]];
    NSURL *url = [NSURL URLWithString:urlPath];
    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
    [request setHTTPMethod:@"POST"];
    //[request setValue:@"*/*" forKey:@"accept"];
    //[request setValue:@"Keep-Alive" forKey:@"connection"];
    //[request setValue:@"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)" forKey:@"user-agent"];
    //[request setValue:len forHTTPHeaderField:@"Content-Length"];
    //[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];
    [request setHTTPBody:postDatas];
    
    NSData *retData = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
    NSString *ret = [[NSString alloc] initWithData:retData encoding:NSUTF8StringEncoding];
    NSLog(@"%@",ret);
    //解析返回的数据JSON格式字符串
    NSDictionary *dic = [NSJSONSerialization JSONObjectWithData:retData options:NSJSONReadingMutableLeaves error:nil];
    NSLog(@"%@",dic);

鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
iOS 编写高质量Objective-C代码(三)发布时间:2022-07-12
下一篇:
Objective-C之协议发布时间:2022-07-12
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap