开发者

Change data encoding

I开发者_StackOverflow中文版 get some data from the server in Unicode. However I need this data in UTF8. How can I convert data to UTF8 encoding?


The ideal solution is that that the server sends you UTF-8 in the first place.

UTF-8 is an encoding of Unicode, so depending on what you mean by “Unicode” in your question, it may already be doing that.

Cocoa misuses “Unicode” in the symbol NSUnicodeStringEncoding to refer to UTF-16. It's possible, but unlikely, that that's what the server is sending you.

The server should tell you in the Content-Type header what encoding it used for the content. You should look at that in your program rather than assuming the server will use any specific encoding.

If the encoding is not specified in the header, try treating it as UTF-8, and if that doesn't work, I suggest complaining to whoever runs the server.

To convert from any encoding supported by Cocoa to UTF-8, pass the input data and the encoding it's in to the -[NSString initWithData:encoding:] method, which will decode the data and produce a string; then, send the string a dataUsingEncoding: message with NSUTF8StringEncoding as the desired encoding.


Well UTF-8 is an encoding for Unicode, but to get a string:

NSString *string = [[NSString alloc] initWithData:yourData encoding:NSUTF8StringEncoding]
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜