我正在从服务器下载数据(文本)。
我都尝试过:NSISOLatin1StringEncoding 和 NSASCIIStringEncoding
但我不断看到类似:{"estado":"M\u00e9xico"}
注意它应该读作 México 而不是 M\u00e9xico (在 e 上带有重音)。
上网查了一下,发现\u00e9 其实是é link.
但是 NSString 无法解释这一点,而是在我的 UILabel 上打印出奇怪的东西:
非常感谢您对此提供的帮助。
另外,如果您有兴趣,可以从这里下载数据: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-推荐答案 strong>
这似乎是 unicode,试试 NSUTF8StringEncoding。
关于iphone - 重音的 NSString 编码显示疯狂的字符,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/7005981/
|