如何手动确定当前操作系统的代码页和区域设置
有没有办法让用户手动查找其 Windows 操作系统的当前代码页和区域设置?是否有存储该信息的注册表设置?
如果该技术一直适用于 Windows 2000,那么它也会很有用。
Is there a way that I manually have a user look up the current Codepage and locale of their windows OS? Is there a registry setting that stores that information?
It would also be useful if the technique worked all the way back to Windows 2000.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Win32
GetACP()
函数 返回到 Windows 2000 以查找 ANSI 代码页。GetLocaleInfo()
函数也适用于 Windows 2000。使用LOCALE_SYSTEM_DEFAULT
(或LOCALE_USER_DEFAULT
等)的区域设置参数调用它。如果您的问题不是如何获取此数据以编程方式,而不是非程序员如何查找此信息,那么您可能想将问题发布在 ServerFault 上,这是提出问题的正确位置像那样。
The Win32
GetACP()
function works back to Windows 2000 to find the ANSI code page.The
GetLocaleInfo()
function works also back to Windows 2000. Call it with a Locale parameter ofLOCALE_SYSTEM_DEFAULT
(orLOCALE_USER_DEFAULT
, etc.)If your question is not how you can get this data programmatically, but instead how a non-programmer can look up this info, then you probably want to post the question on ServerFault which is the right spot for questions like that.