Windows 中的区域设置列表

发布于 2024-10-19 17:15:08 字数 299 浏览 4 评论 0原文

在 *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 技术交流群。

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

发布评论

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

评论(2

﹏半生如梦愿梦如真 2024-10-26 17:15:08

最初,我找不到 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().

陪我终i 2024-10-26 17:15:08

此页面似乎包含指向以下语言和国家/地区列表的链接WIN32 setlocale 可识别。然而:

可用语言集,
国家/地区代码和代码页
包括所有由
Win32 NLS API,除了以下代码页
每个需要两个以上字节
字符,例如 UTF-7 和 UTF-8。如果
您提供一个代码页,例如 UTF-7 或
UTF-8,setlocale会失败,返回
空。

失败。

This page seems to contain links to lists of language and country/region that the WIN32 setlocale recognizes. However:

The set of available languages,
country/region codes, and code pages
includes all those supported by the
Win32 NLS API except code pages that
require more than two bytes per
character, such as UTF-7 and UTF-8. If
you provide a code page like UTF-7 or
UTF-8, setlocale will fail, returning
NULL.

fail.

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