摘要: 1。如何读取UTF-8编码的文本文件?2。如何读取GB2312(中文)的文本文件?3。如何读取其它编码文件?首先解决第一个问题,1。如何读取UTF-8编码的文本文件? NSString *filePath = [[[NSBundle mainBundle] bundlePath] stringByAppendingPathComponent:fileName]; [NSString stringWithContentsOfFile:filePath encoding:NSUTF8StringEncoding error:nil] //当然也可以采用如下方法 //NSD... 阅读全文
posted @ 2012-11-29 09:57 xuvw 阅读(11245) 评论(2) 推荐(0) 编辑