gpt4 book ai didi

C++ std::wofstream unicode 问题。

转载 作者:太空宇宙 更新时间:2023-11-04 13:28:20 27 4
gpt4 key购买 nike

我使用 VS 2012 编写了这段代码:

std::wofstream logout("my_log.txt", std::ios_base::out | std::ios_base::trunc);
std::locale utf8_locale(locale(), new codecvt_utf8<wchar_t>);
logout.imbue(utf8_locale);

if (!logout.is_open())
{
printf("Cannot open file.\n");
return 1;
}
else printf("Log file created.\n");

logout << "Client IP │"<< "Recv time │"<< "Request │"<< "Response "<<endl;
logout << "─────────────────────┼"<< "─────────────────────────┼"<<endl;

在 my_log.txt 文件中,所有 unicode 符号都替换为“??????”。我想创建类似日志文件表的东西。如果我使用像“---”这样的标准 ASCII 符号,它会起作用,并且它们都显示在屏幕上。我试过更改全局语言环境,但没有成功。

最佳答案

这就是为什么我们在字符串文字中只使用 ASCII。

您的代码很好,但您的字符串文字显然不包含您认为的内容。这可能是由于文本编辑器配置错误或功能不足所致。

改用转义序列 (\uXXXX),这样您就知道得到了什么。在 2015 年,使用 ASCII 字符组成的源代码真的不会出错。

关于C++ std::wofstream unicode 问题。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32539835/

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