gpt4 book ai didi

c - 在c中读取unicode文件

转载 作者:行者123 更新时间:2023-12-04 00:43:20 25 4
gpt4 key购买 nike

我只想在普通的 c 中读取 unicode 文本文件。以下代码不适用于相同的情况,

#include<stdio.h>

int main()
{
FILE *ptr_file;
char buf[1000];

ptr_file =fopen("input.txt","r");
if (!ptr_file)
return 1;

while (fgets(buf,1000, ptr_file)!=NULL)
printf("%s",buf);

fclose(ptr_file);
return 0;
}

最佳答案

试试这个:

#include <locale.h>
#include <stdio.h>
#include <wchar.h>

int main()
{
FILE *input;
wchar_t buf[1000];

setlocale(LC_CTYPE,"it_IT.UTF-8"); // put your locale here

if ((input = fopen("input.txt","r")) == NULL)
return 1;

while (fgetws(buf,1000,input)!=NULL)
wprintf(L"%s",buf);

fclose(input);
}

关于c - 在c中读取unicode文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16372615/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com