winapi – 如何以编程方式确定Windows的当前默认代码页?

前端之家收集整理的这篇文章主要介绍了winapi – 如何以编程方式确定Windows的当前默认代码页?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我必须将VB6应用程序的字符串输出的编码转换为特定的编码.

问题是,我不知道字符串的编码,因为:

According to the VB6 documentation when accessing certain API functions the internal Unicode strings are converted to ANSI strings using the default codepage of Windows.

因此,字符串输出的编码在不同系统上可能不同,但我必须知道它才能执行转换.

如何使用Win32 API读取默认代码页,或者 – 如果没有其他方法 – 通过阅读注册表?

通过使用 GetACP – Win32 API调用返回默认代码页,它可能更简洁! (默认代码页通常称为“ANSI”)
int nCodePage = GetACP();

此外,许多API调用(例如MultiByteToWideChar)接受始终为means “use the system code page”的常量值CP_ACP(零).因此,您可能实际上不需要知道当前代码页,具体取决于您要对其执行的操作.

原文链接:https://www.f2er.com/windows/364740.html

猜你在找的Windows相关文章