使用 fstream 将这些符号打印到文件时,我得到了一个混乱的结果。使用:
file << "Δ" << endl;
这在 Linux 中运行良好,但是当我为 Windows 编译它时它不起作用。
有没有一种特定的方法可以在 Windows 中进行这项工作?
以下应该适用于 MSVC2010。使用std::codecvt_utf8_utf16将宽字符转换为 UTF-8 字节流:
#include <fstream>
#include <codecvt>
int main()
{
std::wofstream file("myfile", std::ios::out | std::ios::binary);
file.imbue(std::locale(file.getloc(), new std::codecvt_utf8_utf16<wchar_t>));
file << L"Δ" << std::endl;
}