首页 > 学院 > 开发设计 > 正文

【读书笔记】iOS网络-HTTP-URL百分号编码

2019-11-14 18:10:49
字体:
来源:转载
供稿:网友

代码:

复制代码
- (void)viewDidLoad {    [super viewDidLoad];    // Do any additional setup after loading the view, typically from a nib.        //URL百分号编码    //URL编码会编码&,问号和其他标点符号。    NSString *urlString=@"http://myhost.com?query=This is a question";    NSString *encoded=[urlString stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];    NSLog(@"--urlString--%@",urlString);    NSLog(@"--endcoded--%@",encoded);    }
复制代码

 

输出:

2015-08-18 21:41:58.501 百分号编码[730:74165] --urlString--http://myhost.com?query=This is a question2015-08-18 21:41:58.501 百分号编码[730:74165] --endcoded--http://myhost.com?query=This%20is%20a%20question

 

 

参考资料:《iOS网络高级编程-iphone和iPad的企业应用开发》

 

 
 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表