コンソール アプリケーションでバルト文字を使用し、それらを使用して CMD コマンドを実行する場合、次のことが重要です。デフォルトの標準コンソール C アプリケーションで発生する課題に対処します。これらの課題を克服するには、16 進数 (HEX) 文字列の操作や CMD との互換性の確保などの手法を採用できます。
既存の文字列から HEX 文字列を作成するにはでは、次の関数を利用できます:
<code class="cpp">int GetUtf8CharacterLength(unsigned char utf8Char) { if (utf8Char < 0x80) return 1; else if ((utf8Char & 0x20) == 0) return 2; else if ((utf8Char & 0x10) == 0) return 3; else if ((utf8Char & 0x08) == 0) return 4; else if ((utf8Char & 0x04) == 0) return 5; return 6; } char Utf8ToLatin1Character(char* s, int* readIndex) { int len = GetUtf8CharacterLength(static_cast<unsigned char>(s[*readIndex])); if (len == 1) { char c = s[*readIndex]; (*readIndex)++; return c; } unsigned int v = (s[*readIndex] & (0xff >> (len + 1))) << ((len - 1) * 6); (*readIndex)++; for (len--; len > 0; len--) { v |= (static_cast<unsigned char>(s[*readIndex]) - 0x80) << ((len - 1) * 6); (*readIndex)++; } return (v > 0xff) ? 0 : (char)v; } char* Utf8ToLatin1String(char* s) { for (int readIndex = 0, writeIndex = 0; ; writeIndex++) { if (s[readIndex] == 0) { s[writeIndex] = 0; break; } char c = Utf8ToLatin1Character(s, &readIndex); if (c == 0) { c = '_'; } s[writeIndex] = c; } return s; }</code>
この関数は、UTF-8 文字列を Latin1 に変換します。文字列。16 進数の変換に適しています。たとえば、UTF-8 文字列「āāāčččēēēē」がある場合、この関数を使用してそれを Latin1 文字列に変換できます。 "xc3xa9xc3xa9xc3xa9xc4x8cxc4x8cxc4x8cxc4x9bxc4x9bxc4x9bxc4x9b".
バルト文字列から作成された 16 進文字列が CMD と互換性があることを確認するにはCMD では、文字列のエンコーディングが正しく設定されていることを確認する必要があります。これは、プログラムのグローバル ロケールを UTF-8 に設定することで実現できます:
<code class="cpp">std::locale::global(std::locale{".utf-8"});</code>
さらに、ストリームのロケールを UTF-8 に設定することもできます:
<code class="cpp">auto streamLocale = std::locale{""}; // this impacts date/time/floating point formats, so you may want tweak it just to use sepecyfic encoding and use C-loclae for formating std::cout.imbue(streamLocale); std::cin.imbue(streamLocale);</code>
グローバル ロケールとストリーム ロケールの両方を UTF-8 に設定することで、CMD コマンドが渡した 16 進文字列を正しく解釈できるようになります。
要約すると、これらの手順に従うことで、エンコードの問題が発生することなく、コンソール アプリケーションでバルト文字を使用し、それを使用して CMD コマンドを実行できます。
以上がVisual Studio 2019 C プロジェクトでバルト文字を処理し、それを使用して CMD コマンドを実行するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。