本文介绍了如何在objective-c中检测文本文件编码?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想知道objective-c中的文本文件编码。
I want to know the text file encoding in objective-c. Can you explain me how to know that?
推荐答案
您可以使用 stringWithContentsOfFile:usedEncoding:error:
除了新的字符串,它返回使用的编码。
You can use stringWithContentsOfFile:usedEncoding:error:
, which returns, in addition to the new string, the encoding that was used.
我应该注意,这是一个启发式过程本质上 - 并不总是可能确定文件的字符编码。
I should note that this is a heuristic process by nature -- it's not always possible to determine the character encoding of a file.
这篇关于如何在objective-c中检测文本文件编码?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!