Windows 中的区域设置列表
在 *nix 系统上,您可以执行 locale -a
来获取可用区域设置的列表。
Windows 中的等效命令(或操作)是什么?
我在互联网上看到过列表,但其中大多数只是区域设置标签,而不是实际的区域设置名称。另外,并非所有系统都保证安装了所有这些,对吗?
请注意,我在这里对“区域设置”的定义是“区域设置字符串”,即 C 的 setlocale()
的第二个参数,它将导致非 NULL 返回值。
编程答案也很好,我只是厌倦了暴力猜测 Windows 区域设置名称。
On *nix systems you can do locale -a
to get a list of available locales.
What is the equivalent command (or action) in Windows?
I've seen lists on the Internet, but most of them are of just locale labels and not actual locale names. Plus, not all systems are guaranteed to have all of them installed, right?
Note that my definition of "locale" here is "locale string", i.e. a second parameter to C's setlocale()
which will result in a non-NULL return value.
Programmatic answers are also fine, I'm just tired of brute force guessing Windows locale names.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最初,我找不到 C/Win32 API 来获取信息。 (请参阅稍后的编辑。)但是,它看起来像 .NET 类 System.Globalization.CultureInfo可以提供您需要的信息。特别是,请参见 CultureInfo.GetCultures()。此页面似乎有您正在寻找的内容的完整示例。
编辑:如果您更喜欢 C/Win32 API,请参阅 EnumSystemLocales() 函数。
编辑2:此示例展示了如何转换LCID(您从EnumSystemLocales()) 转换为可由 setlocale() 使用的字符串。
Initially, I couldn't find a C/Win32 API to get the information. (See later edit.) However, it looks like the .NET class System.Globalization.CultureInfo could provide the information you need. In particular, see CultureInfo.GetCultures(). This page seems to have a complete example of what you are looking for.
EDIT: If you prefer a C/Win32 API, see EnumSystemLocales() function.
EDIT 2: This example shows how to convert an LCID (which you get from EnumSystemLocales()) into a string useable by setlocale().
此页面似乎包含指向以下语言和国家/地区列表的链接WIN32 setlocale 可识别。然而:
失败。
This page seems to contain links to lists of language and country/region that the WIN32 setlocale recognizes. However:
fail.