设置CultureInfo.DefaultThreadCurrentUICulture后,CultureInfo.DisplayName始终返回英文

时间:2017-03-24 21:05:21

标签: c# .net internationalization

设置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版本。

如何在线程的当前文化中获取文化显示名称?

1 个答案:

答案 0 :(得分:0)