OStack程序员社区-中国程序员成长平台

标题: iphone - 重音的 NSString 编码显示疯狂的字符 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 17:00
标题: iphone - 重音的 NSString 编码显示疯狂的字符

我正在从服务器下载数据(文本)。

我都尝试过:NSISOLatin1StringEncodingNSASCIIStringEncoding

但我不断看到类似:{"estado":"M\u00e9xico"}

注意它应该读作 México 而不是 M\u00e9xico(在 e 上带有重音)。

上网查了一下,发现\u00e9其实是é link.

但是 NSString 无法解释这一点,而是在我的 UILabel 上打印出奇怪的东西:

enter image description here

非常感谢您对此提供的帮助。

另外,如果您有兴趣,可以从这里下载数据:http://www.miorden.com/demo/iphone/estadoJSON.php

NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString"http://www.miorden.com/demo/iphone/estadoJSON.php"]];

NSString *string = [[NSString alloc] initWithData:data encoding:NSASCIIStringEncoding];

NSLog(@"Downloaded: %@", string);    

string = [NSString stringWithContentsOfURL:[NSURL URLWithString"http://www.miorden.com/demo/iphone/estadoJSON.php"] encoding:NSISOLatin1StringEncoding error:nil];

NSLog(@"Downloaded: %@", string);

我已经尝试了好几天了,这让我很生气!

非常感谢!



Best Answer-推荐答案


这似乎是 unicode,试试 NSUTF8StringEncoding。

关于iphone - 重音的 NSString 编码显示疯狂的字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7005981/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4