读取文本文件中的法语字符

发布于 2024-11-05 11:27:33 字数 389 浏览 0 评论 0原文

您好,无法读取文本文件中的法语口音(如“é”), 这是我用来打开和读取文件的代码...

FILE* file = fopen( [MyFileName UTF8String], "r, ccs=UTF-8");
if (file != 0)
{
    while(fgets(buffer, 1024, file) != NULL)
    {      
        NSString* string = [[NSString alloc] initWithCString: buffer];
        //Do many things.....
    }
    fclose(file);
}

我看不出问题出在哪里,我的文件已正确编码为 UTF8...

谢谢!

Hi can't read the french accent (like 'é') in a text file,
this is the piece of code I use to open and read the file...

FILE* file = fopen( [MyFileName UTF8String], "r, ccs=UTF-8");
if (file != 0)
{
    while(fgets(buffer, 1024, file) != NULL)
    {      
        NSString* string = [[NSString alloc] initWithCString: buffer];
        //Do many things.....
    }
    fclose(file);
}

I can't see where is the problem, my file is correctly encoded in UTF8...

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

空城缀染半城烟沙 2024-11-12 11:27:33

c中的fgets函数仅是ASCII,您需要使用fgetws。这是 fgets 的宽版本,用于多字节编码。

The fgets function in c is ASCII only, you need to use the fgetws. This is the wide version of fgets for use with multibyte encodings.

梦回旧景 2024-11-12 11:27:33

您可以使用 stringWithContentsOfFile:usedEncoding:error: 来读取 NSString 中的文件内容,而不是 fopenfgets > 直接方法。

NSString *fileContent = [NSString stringWithContentsOfFile:myFilePath usedEncoding:NSUTF8StringEncoding error:NULL];

Instead of fopen and fgets you can read the content of file in a NSString by using stringWithContentsOfFile:usedEncoding:error: method directly.

NSString *fileContent = [NSString stringWithContentsOfFile:myFilePath usedEncoding:NSUTF8StringEncoding error:NULL];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文