我必须将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.
因此,字符串输出的编码在不同系统上可能不同,但我必须知道它才能执行转换.
通过使用
GetACP – Win32 API调用返回默认代码页,它可能更简洁! (默认代码页通常称为“ANSI”)
原文链接:https://www.f2er.com/windows/364740.htmlint nCodePage = GetACP();
此外,许多API调用(例如MultiByteToWideChar
)接受始终为means “use the system code page”的常量值CP_ACP(零).因此,您可能实际上不需要知道当前代码页,具体取决于您要对其执行的操作.