wchar_t 宽字节流写入中文的问题

wchar_t 宽字节流写入中文的问题

先看程序:
#include "stdafx.h"
#include <fstream>
int _tmain(int argc, _TCHAR* argv[])
{
     std::wofstream   test(L"Test.Log");
     test << L"hello 中文";

     return 0;
}

UNICODE编译、调试;结果中Test.Log文件的内容只有“hell”没有“中文”。

这是因为C++标准库的国际化设计问题,你需要设置locale。

#include "stdafx.h"

#include <fstream>
#include <locale>

int _tmain(int argc, _TCHAR* argv[])
{
 std::wofstream   test(L"Test.Log");

 test.imbue( std::locale("CHS") );

 test << L"hello 中文";

 return 0;
}

再调试,不是有“中文”了?

你可能感兴趣的:(wchar_t 宽字节流写入中文的问题)