2

视窗 8 x64;视觉工作室 2012;

我通过书本学习 C++。在这个论坛上,我发现了许多关于通过 C++ 读写 Unicode 字符串的主题。但是这个主题没有标记为已解决(???)。C++ 中的问题真的很大吗?我尝试了不同的变体 - 它们对我不起作用:

#include<iostream>
#include<Windows.h>
#include <io.h>
#include <fcntl.h>
using namespace std;

int main() {
    // variant 1:
    wcout << L"Hello World!" << endl; // displayed
    wcout << L"Привет Мир!" << endl;// not displayed

    //**********************************************

    // variant 2:
    SetConsoleOutputCP(CP_UTF8);
    wchar_t s[] = L"Hello World (2)!";
    int bufferSize = WideCharToMultiByte(CP_UTF8, 0, 
        s, -1, NULL, 0, NULL, NULL);
    char* m = new char[bufferSize]; 
    WideCharToMultiByte(CP_UTF8, 0, s, -1, m, 
        bufferSize, NULL, NULL);

    wprintf(L"%S", m); // valid output
    wcout << endl;
    printf("%s", m); // valid output
    wcout << endl;

    wchar_t s2[] = L"Привет мир (2)!";
    int bufferSize2 = WideCharToMultiByte(CP_UTF8, 0, 
        s2, -1, NULL, 0, NULL, NULL);
    char* m2 = new char[bufferSize2]; 
    WideCharToMultiByte(CP_UTF8, 0, s2, -1, m2, 
        bufferSize2, NULL, NULL);

    wprintf(L"%S", m2); // invalid output
    wcout << endl;
    printf("%s", m2); // invalid output
    wcout << endl;
    //**********************************************

    // variant 3 (not working):
    _setmode(_fileno(stdout), _O_U16TEXT);
    wcout << L"Testing unicode -- English -- Ελληνικά"
        << "-- Español." << endl;

    return 0;
}

但它仅适用于英文字符...屏幕:

在此处输入图像描述

如何通过 C++ 解决这个问题?

4

4 回答 4

2

解决方法是执行

chcp 65001

cmd.exe执行您的程序之前(我不知道如何以编程方式执行此操作)。65001 是 UTF8 编码的神奇值。其他可用代码页的列表在chcp这里:http ://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/chcp.mspx?mfr=true 。Cyrillic CP1251 的其他有趣值是 855。

并且不要忘记将控制台字体切换为 Lucida(默认字体不适用于 UTf-8)。

于 2012-11-05T14:29:29.543 回答
2

我发现了更简单的变体(不更改代码页和字体):

#include<iostream>
#include<windows.h>

using namespace std;
int main()
{
    cout<<"Привет мир (1)!" << endl; // invalid output

    SetConsoleCP(GetACP());
    SetConsoleOutputCP(GetACP());

    cout<<"Привет мир (2)!" << endl; // valid output!

    return 0;
}

也许它不仅对我感兴趣。

PS 但是...它在 CMD.EXE 中有效,但在 POWERSHELL.EXE 中无效。

于 2012-11-05T15:02:54.557 回答
0

我找到了更清晰的决定然后chcp使用命令:

// Getting the readable Cyrillic chars in the console window...
setlocale(LC_ALL, "Russian");
wcout << endl << L"Добро "; // UNICODE
cout << "пожаловать!" << endl; // ANSI

对于这两种情况,我都会得到可读的输出。

于 2015-10-07T13:55:39.160 回答
-1

哦~~原谅我,下面是C。

在 C++ 中,您可以执行以下操作:

#include <iostream>
#include <locale>
using namespace std;
int main(int argc, char *argv[])
{
    locale::global(std::locale(""));
    wcout << L"Привет Мир!" << endl;
    return 0;
}

#include <locale.h>

setlocale(LC_ALL,NULL);

默认设置为 (LC_ALL,"C")。所以不能显示ASCII码以外的字符

于 2012-11-05T14:28:47.907 回答