Can std::wofstream << WCHAR and << CHAR at the same time?

154 Views Asked by At

How can we write WCHAR and CHAR to a wofstream at the same time?like this:

wofstream << L"汉字" << "汉字"

Here is something for testing. I can only "wofstream<<WCHAR" or only "wofstream<<CHAR", but can't "wofstream<<WCHAR<<CHAR" both at the same time.

#include <iostream>
#include <fstream>
#include <locale>

int main() {
    std::wofstream wof2;
    wof2.open(L"2.txt", std::wofstream::app);
    wof2 << "\nCHAR 汉";
    wof2.flush();
    wof2 << L"\nWCHAR 汉";
    wof2.close();
    
    const char * tmp = setlocale(LC_ALL, "");
    std::cout << tmp << std::endl;
    std::locale::global(std::locale(""));
    wof2.open(L"2.txt", std::wofstream::app);
    wof2.imbue(std::locale());

    wof2 << L"\nWCHAR after imbue";
    wof2.flush();
    wof2 << L"\nWCHAR 汉";
    wof2.flush();
    wof2 << "\nCHAR汉";
    wof2.flush();

    return 0;
}

We can see that at the console

Chinese (Simplified)_China.936

But In the 2.txt, I see that

CHAR 汉
WCHAR 
WCHAR after imbue
WCHAR 汉
CHAR
0

There are 0 best solutions below