I got seperated parts from 22 files in different languages and made them a wstring line like:
wstring wstr_line = L"\"IDS_TOAST_ECOON\",\"eco Mode is turned On.\",\"ecoモードをオンにしました。\",\"Režim eco je zapnutý.\",\"Økoindstillingen er aktiveret\"..."
I used wofstream to put wstr_line into a file, but the line finished at Japanese part(\"ecoモードをオンにしました。\").
If I set wfout.imbue("chs"); the line finished at Czech part(\"Režim eco je zapnutý.\")
How can write this line to a file correctly?
L"Text". Is this a typo? As this mean the text in your code is not wchar_t* but char*. Which suggests that the string is encoded as UTF-8. – Loki Astari Jul 30 '12 at 4:58