博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
post
阅读量:5052 次
发布时间:2019-06-12

本文共 678 字,大约阅读时间需要 2 分钟。

 

NSURL *url = [NSURL URLWithString:@"https://www.baidu.com"];    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];    request.HTTPMethod = @"POST";   // 请求参数    NSString *bodyStr = [NSString stringWithFormat:@"username=%@&password=%@", username, password];    request.HTTPBody = [bodyStr dataUsingEncoding:NSUTF8StringEncoding];    NSData *data =[NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
NSError *error = nil;    NSDictionary *json = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableLeaves error:&error];    NSLog(@"---------------%@", json);

转载于:https://www.cnblogs.com/pzy121/p/4622654.html

你可能感兴趣的文章
【Linux】【C语言】菜鸟学习日志(一) 一步一步学习在Linxu下测试程序的运行时间...
查看>>
hostname
查看>>
SpringBoot使用其他的Servlet容器
查看>>
关于cookie存取中文乱码问题
查看>>
k8s架构
查看>>
select 向上弹起
查看>>
mysql 多表管理修改
查看>>
group by order by
查看>>
bzoj 5252: [2018多省省队联测]林克卡特树
查看>>
https 学习笔记三
查看>>
Oracle学习之简单查询
查看>>
log4j配置
查看>>
linux 配置SAN存储-IPSAN
查看>>
双链表
查看>>
java学习笔记之String类
查看>>
pymysql操作mysql
查看>>
Linux服务器删除乱码文件/文件夹的方法
查看>>
牛腩记账本core版本源码
查看>>
Word Break II
查看>>
UVA 11082 Matrix Decompressing 矩阵解压(最大流,经典)
查看>>