本文介绍了如何解决编码问题? (NSString / XMLParsing)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我解析了一个包含UTF8 /拉丁字符(é,â,è,î等等)的XML文件。起初,我尝试用一个替换错误字符的函数来解决这个问题。但是我有一个问题,à,替换为。
而且我不想替换所有的我的文件,我必须找到另一种方法来解决它。
任何想法来解决这个问题?
非常感谢您的建议
解决方案
为了最终回答这个问题,它的工作是。但只能使用UTF-8编码,而不是ISO-8859-1。
I parsed an XML file containing UTF8/latin characters (é, â, è, î, etc...).
At first I tried to fix this with a function replacing the wrong chars. But I'm having a problem with à, replaced by ".And as I don't want to replace all the " of my file, I have to find another way to fix it.
Any idea to fix this ?
Thanks a lot for your advices
解决方案
To finally answer this question, it worked using TBXML. But only with UTF-8 encoding, not ISO-8859-1.
这篇关于如何解决编码问题? (NSString / XMLParsing)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!