c/c++中如何正常输出多字节字符控制台应用程序?

发布于 2024-09-26 18:23:41 字数 113 浏览 4 评论 0原文

printf("%s\n", multibytestring);

默认情况下,多字节字符将在控制台中显示为 ??? ,我该如何修复它?

printf("%s\n", multibytestring);

By default the multi-byte characters will show up like ??? in console, how can I fix it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

皓月长歌 2024-10-03 18:23:41

我猜是Windows,你指的是多字节字符而不是宽字符。

确保已定义 _MBCS。尝试调用 setlocale 然后调用 _setmbcp

setlocale(LC_ALL, "japanese");
_setmbcp(_MB_CP_LOCALE);

之后它应该可以正常工作。

I'm guessing Windows, and that you mean multi-byte characters and not wide characters.

Make sure that _MBCS is defined. Try calling setlocale and then _setmbcp:

setlocale(LC_ALL, "japanese");
_setmbcp(_MB_CP_LOCALE);

After that it should hopefully work fine.

勿忘初心 2024-10-03 18:23:41

您需要“%ls”来表示宽字符串。这就是你所追求的吗?

这是更完整的答案:

  • 您可以使用 wprintf 默认使用“%s”输出 16 位字符串
  • 您可以使用“%ls”或“%hs”显式指定各个参数的字符/字符串宽度,无论 printf 如何变体
  • 请参阅:http://msdn.microsoft.com/en-us/library/ 56e442dc.aspx 用于 MS 的参考文档

如果您询问 UTF8 字符显示不正确,它可能是特定于平台的(取决于控制台的代码页/处理)。您应该能够将 UTF8 输出为 ASCII,但是显示器必须能够正确处理 UTF8,并且您可能需要设置适当的代码页或其他环境设置(对此不太确定,我认为这是特定于应用程序/平台的)。

You want "%ls" for wide-character strings. Is that what you're after?

Here's a more complete answer:

  • You can use wprintf to output 16-bit strings by default using "%s"
  • You can use "%ls" or "%hs" to explicitly specify the char/string width for individual arguments, regardless of printf variant
  • See: http://msdn.microsoft.com/en-us/library/56e442dc.aspx for MS's reference docs

If you're asking about UTF8 characters not appearing right, it's probably platform-specific (dependent on the codepage/handling for the console). You should be able to output UTF8 as ASCII, but the display will have to be able to handle UTF8 correctly, and you may need to set the appropriate codepage or other environment setting (not too sure about this, I think it's app/platform specific).

_蜘蛛 2024-10-03 18:23:41

试试这个:

wprintf("%s\n", multibytestring);

Try this:

wprintf("%s\n", multibytestring);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文