std::locale::global(std::locale("Korean")); // 방법 #1 std::locale::global(std::locale("")); // 방법 #2 wofstream fsOut; fsOut.imbue(std::locale("Korean")); // 방법 #3 fsOut.imbue(std::locale("")); // 방법 #4 fsOut.open( L"Output File Path", std::ios::out );
No comments :
Post a Comment