1

使用 fstream 将这些符号打印到文件时,我得到了一个混乱的结果。使用:

file << "Δ" << endl;

这在 Linux 中运行良好,但是当我为 Windows 编译它时它不起作用。

有没有一种特定的方法可以在 Windows 中进行这项工作?

4

1 回答 1

2

以下应该适用于 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;
}
于 2013-04-18T08:56:15.693 回答