码迷,mamicode.com
首页 > 移动开发 > 详细

IOS 使用Http模拟SOAP请求Webservice时内容Unicode编码的实现

时间:2015-02-01 14:42:13      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

IOS上去请求WebService时,为了方便,直接用http POST请求。通过对JAVA版本的抓包发现,请求中的中文字符,都被转成Unicode编码。

如:a被换为 a

【其实很简单,获取每个字符的对应的数字,如999,unicode编码即为:ϧ 】

为了实现相关功能,手动将字符串拼接,代码如下:

 

-(NSString *)convert2Unicode:(NSString *)str
{
    NSMutableString *resultString = [[NSMutableString alloc]init];

    NSInteger length =[str length];
    for (int i=0; i<length; i++) {
       // NSLog(@"ConvertString2Unicode ******  charAtIndex%d is %c code:&#%d;",i,[str characterAtIndex:i],[str characterAtIndex:i]);
        [resultString appendString:[NSString stringWithFormat:@"&#%d;",[str characterAtIndex:i]]] ;
    }
    return resultString;
}

 

本人未测试直接传字符串的效果,欢迎指点。

 

IOS 使用Http模拟SOAP请求Webservice时内容Unicode编码的实现

标签:

原文地址:http://www.cnblogs.com/qqsscc/p/4265446.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!