设置CultureInfo.DefaultThreadCurrentUICulture
CultureInfo.DisplayName
后总是返回英文。
我试试
CultureInfo cu = new CultureInfo("ja-JP");
System.Threading.Thread.CurrentThread.CurrentCulture = cu;
CultureInfo.DefaultThreadCurrentCulture = cu;
// CultureInfo.DefaultThreadCurrentUICulture = cu;
// SetDefaultCulture(cu);
Dictionary<string, string> ifile = new Dictionary<string, string>();
var regex = new System.Text.RegularExpressions.Regex(@"([\w+\s*\.*]+\))");
foreach (var item in CultureInfo.GetCultures(CultureTypes.FrameworkCultures))
{
I18nCulture country = new I18nCulture();
var match = regex.Match(item.DisplayName);
string countryName = match.Value.Length == 0 ? item.EnglishName : match.Value.Substring(0, match.Value.Length - 1);
if (item.Name != "")
{
ifile.Add(item.Name, item.DisplayName);
}
}
string fn = System.IO.Path.Combine(rootPath, "lib", "i18n", "culture", lng + ".json");
Console.WriteLine("save : " + fn);
saveObjectToJSON(ifile, fn);
当我运行此代码时,item.DisplayName
是德语,这是我目前的操作系统语言。当我取消注释CultureInfo.DefaultThreadCurrentUICulture = cu;
item.DisplayName
是英语时。此时我希望显示名称的ja-JP
版本。
如何在线程的当前文化中获取文化显示名称?